2

Login form – Fyne Golang GUI Tutorial 54

Login form – Fyne Golang GUI Tutorial 54

 

 


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
    form := widget.NewForm(
        // new use form items
        // 2 arguments
        // label, widget
        widget.NewFormItem("Username", widget.NewEntry()),
        // password
        widget.NewFormItem("Password", widget.NewPasswordEntry()),
    )
    // working on cancel and submit functions of form
    form.OnCancel = func() {
        label.Text = "Canceled"
        label.Refresh()
    }
    form.OnSubmit = func() {
        label.Text = "submitted"
        label.Refresh()
    }
    // we are almost done
    w.SetContent(
        container.NewVBox(
            form,
            label,
        ),
    )
    w.ShowAndRun()
}

[easy_media_download url=”http://blogvali.com/wp-content/uploads/fyne-golang-downloads/main54.go” text=”Download Code” color=”red_darker”]

Fyne Golang GUI Course

 

Tony BB
 

TonyBB is a Coach , marketer, hypnotist and a founder of RSKVF Production who specializes in providing simple, affordable, and easy to use solutions for Life.

Click Here to Leave a Comment Below 2 comments
Renan - last year

Which is de variable responsible to store the Username’s input and the Password’s input ?

Reply
Tony BB - last year

Use something like this.

1) username := widget.NewEntry()

2) password := widget.NewPasswordEntry()

Reply

Leave a Reply: