twink/tui/size.go
2025-12-06 11:01:11 +01:00

15 lines
302 B
Go

package tui
import tea "github.com/charmbracelet/bubbletea"
type Size struct{
Width, Height int
}
func NewSize(width, height int) Size {
return Size { Width: width, Height: height }
}
func NewSizeFromWindow(size tea.WindowSizeMsg) Size {
return Size { Width: size.Width, Height: size.Height }
}