forked from fyne-io/fyne
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfyne.go
More file actions
25 lines (25 loc) · 714 Bytes
/
fyne.go
File metadata and controls
25 lines (25 loc) · 714 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// Package fyne describes the objects and components available to any Fyne app.
// These can all be created, manipulated and tested without rendering (for speed).
// Your main package should use the app package to create an application with
// a default driver that will render your UI.
//
// A simple application may look like this:
//
// package main
//
// import "fyne.io/fyne/app"
// import "fyne.io/fyne/widget"
//
// func main() {
// a := app.New()
//
// w := a.NewWindow("Hello")
// w.SetContent(widget.NewVBox(
// widget.NewLabel("Hello Fyne!"),
// widget.NewButton("Quit", func() {
// a.Quit()
// })))
//
// w.ShowAndRun()
// }
package fyne // import "fyne.io/fyne"