-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
40 lines (31 loc) · 949 Bytes
/
main.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
package main
import (
"fmt"
"fyne.io/fyne/v2/app"
"fyne.io/fyne/v2/container"
"fyne.io/fyne/v2/widget"
)
func main() {
myApp := app.New()
myWindow := myApp.NewWindow("Счётчик")
// состояния
prefs := myApp.Preferences()
counter := prefs.Int("counter") // получение
counterLabel := widget.NewLabel(fmt.Sprintf("Счётчик: %d", counter))
incrementButton := widget.NewButton("Увеличить счётчик", func() {
counter++
counterLabel.SetText(fmt.Sprintf("Счётчик: %d", counter))
prefs.SetInt("counter", counter) // сохранение
})
resetButton := widget.NewButton("Обнулить счётчик", func() {
counter = 0
counterLabel.SetText(fmt.Sprintf("Счётчик: %d", counter))
prefs.SetInt("counter", counter) // сохранение
})
myWindow.SetContent(container.NewVBox(
counterLabel,
incrementButton,
resetButton,
))
myWindow.ShowAndRun()
}