Push source-code from non-git managed location.

This commit is contained in:
Daan
2024-09-27 15:37:12 +02:00
parent da8f8c302e
commit edce0d8ac5
3 changed files with 719 additions and 0 deletions

26
main.go Normal file
View File

@@ -0,0 +1,26 @@
package main
import (
"fyne.io/fyne/v2"
"fyne.io/fyne/v2/app"
"fyne.io/fyne/v2/container"
"fyne.io/fyne/v2/widget"
)
func main() {
a := app.New()
w := a.NewWindow("Systemec Notify")
label := widget.NewLabel("Dit vester sluit zichzelf, er is geen actie nodig.")
label.Wrapping = fyne.TextWrapWord
button := widget.NewButton("Annuleren", func() {
a.Quit()
})
content := container.NewBorder(label, button, nil, nil)
w.Resize(fyne.NewSize(250, 290))
w.SetContent(content)
w.ShowAndRun()
}