Documentation ¶ Index ¶ type Box func NewBox() *Box func (b *Box) Draw(title string, body string, footer string, color string, info string) string type ScrollBar func NewScrollBar() ScrollBar func (s ScrollBar) Draw(visible []string, firstVisible string, height int, total int, width int, ...) string Constants ¶ This section is empty. Variables ¶ This section is empty. Functions ¶ This section is empty. Types ¶ type Box ¶ type Box struct { // contains filtered or unexported fields } func NewBox ¶ func NewBox() *Box func (*Box) Draw ¶ func (b *Box) Draw(title string, body string, footer string, color string, info string) string TODO: implement type ScrollBar ¶ type ScrollBar struct{} func NewScrollBar ¶ func NewScrollBar() ScrollBar func (ScrollBar) Draw ¶ func (s ScrollBar) Draw(visible []string, firstVisible string, height int, total int, width int, color string) string TODO: implement Source Files ¶ View all Source files box.go scroll-bar.go Click to show internal directories. Click to hide internal directories.