meta.go 301 B

12345678910
  1. package app
  2. // these internal variables are set by the fyne build command so that the "FyneApp.toml" data is readable at runtime.
  3. var (
  4. MetaIcon = "" // this will contain base64 encoded icon bytes
  5. MetaID = "com.example"
  6. MetaName = "Fyne App"
  7. MetaVersion = "1.0.0"
  8. MetaBuild = "1"
  9. )