adam-gui/vendor/fyne.io/fyne/v2/widget/importance.go

30 lines
641 B
Go
Raw Permalink Normal View History

2024-04-29 19:13:50 +02:00
package widget
// Importance represents how prominent the widget should appear
//
// Since: 2.4
type Importance int
const (
// MediumImportance applies a standard appearance.
MediumImportance Importance = iota
// HighImportance applies a prominent appearance.
HighImportance
// LowImportance applies a subtle appearance.
LowImportance
// DangerImportance applies an error theme to the widget.
//
// Since: 2.3
DangerImportance
// WarningImportance applies a warning theme to the widget.
//
// Since: 2.3
WarningImportance
// SuccessImportance applies a success theme to the widget.
//
// Since: 2.4
SuccessImportance
)