fckeuspy-go/vendor/fyne.io/fyne/v2/internal/app/theme_mobile.go

19 lines
466 B
Go
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

//go:build android || ios || mobile
package app
import (
"fyne.io/fyne/v2"
)
// SystemTheme contains the systems theme variant.
// It is intended for internal use, only!
var SystemTheme fyne.ThemeVariant
// DefaultVariant returns the systems default fyne.ThemeVariant.
// Normally, you should not need this. It is extracted out of the root app package to give the
// settings app access to it.
func DefaultVariant() fyne.ThemeVariant {
return SystemTheme
}