Source File
empty.go
Belonging Package
src.elv.sh/pkg/cli/tk
package tkimport ()// Empty is an empty widget.type Empty struct{}// Render shows nothing, although the resulting Buffer still occupies one line.func (Empty) (, int) *term.Buffer {return term.NewBufferBuilder().Buffer()}// Handle always returns false.func (Empty) ( term.Event) bool {return false}
The pages are generated with Golds v0.2.8-preview. (GOOS=darwin GOARCH=arm64)