Header encapsulates the application header.
| 15 | |
| 16 | // Header encapsulates the application header. |
| 17 | type Header struct { |
| 18 | *tview.TextView |
| 19 | |
| 20 | mu sync.Mutex |
| 21 | isLoading bool |
| 22 | loadingText string |
| 23 | loadingCancel context.CancelFunc |
| 24 | app *tview.Application |
| 25 | currentProfile string // Track the current active profile |
| 26 | } |
| 27 | |
| 28 | var _ HeaderComponent = (*Header)(nil) |
| 29 |
nothing calls this directly
no outgoing calls
no test coverage detected