package widget import . "gitlab.com/beoran/ebsgo/zori/types" // import _ "gitlab.com/beoran/ebsgo/zori/backend" // import "gitlab.com/beoran/ebsgo/zori/state" import "gitlab.com/beoran/ebsgo/zori/style" /* Caption helper struct for use by widgets that have captions. */ type Caption struct { Label string style.Theme Box } /* Widget with a caption. */ type Captioned struct { Basic Caption }