twink/tui/size.go

16 lines
302 B
Go
Raw Normal View History

2025-12-06 11:01:11 +01:00
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 }
}