class 6 fyne GoLang GUI HYPERLINK
Have you ever link a webiste in your blogpost or MSOFFICE file or HTML page?
This is the same anchor we normally use to link to a site.
[sourcecode lang=”go” autolinks=”false” classname=”myclass” collapse=”false” firstline=”1″ gutter=”true” highlight=”1-3,6,9″ htmlscript=”false” light=”false” padlinenumbers=”false” smarttabs=”true” tabsize=”4″ toolbar=”false” title=”Source Code main.go”]
package main
// importing fyne
import (
"net/url"
"fyne.io/fyne/v2"
"fyne.io/fyne/v2/app"
"fyne.io/fyne/v2/widget"
)
func main() {
// creating new app
a := app.New()
// creating new window
w := a.NewWindow("Here is Hyperlink widget")
w.Resize(fyne.NewSize(400, 400))
// creating url
url, _ := url.Parse("https://google.com")
// hyperLink Widget
// first value is label
// 2nd value is URL/ website address
hyperlink := widget.NewHyperlink("Visit me", url)
// setup content
w.SetContent(hyperlink)
w.ShowAndRun() // show and run
}
Fyne GoLang GUI Course