implement patch, update ui, improve rendering

This commit is contained in:
Kujtim Hoxha
2025-04-18 20:17:38 +02:00
parent 0768c372c9
commit b7e86f61cd
38 changed files with 3312 additions and 2262 deletions
+1 -5
View File
@@ -13,12 +13,8 @@ type Focusable interface {
IsFocused() bool
}
type Bordered interface {
BorderText() map[BorderPosition]string
}
type Sizeable interface {
SetSize(width, height int)
SetSize(width, height int) tea.Cmd
GetSize() (int, int)
}