-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathform_example.go
48 lines (46 loc) · 913 Bytes
/
form_example.go
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
package main
// import fyne
import (
"fyne.io/fyne/v2"
"fyne.io/fyne/v2/app"
"fyne.io/fyne/v2/container"
"fyne.io/fyne/v2/widget"
)
func main() {
// new app
a := app.New()
// new title and window
w := a.NewWindow("New Form")
// resize window
w.Resize(fyne.NewSize(400, 400))
// label empty
label := widget.NewLabel("")
// form widget
username := widget.NewEntry()
password := widget.NewPasswordEntry()
form := widget.NewForm(
// new use form items
// 2 arguments
// label, widget
widget.NewFormItem("Username", username),
// password
widget.NewFormItem("Password", password),
)
// working on cancel and submit functions of form
form.OnCancel = func() {
label.Text = "Canceled"
label.Refresh()
}
form.OnSubmit = func() {
label.Text = username.Text
label.Refresh()
}
// we are almost done
w.SetContent(
container.NewVBox(
form,
label,
),
)
w.ShowAndRun()
}