Multiline Entry – Fyne GUI Golang tutorial 38

Multiline Entry – Fyne GUI Golang tutorial 38

Source Code 


package main
// import fyne
import (
    "fyne.io/fyne/v2"
    "fyne.io/fyne/v2/app"
    "fyne.io/fyne/v2/widget"
)
func main() {
    // new app
    a := app.New()
    // window title
    w := a.NewWindow("Multi-Line Entry")
    // resize window size
    w.Resize(fyne.NewSize(400, 400))
    // New Multi line Entry Widget
    multilineEntry := widget.NewMultiLineEntry()
    const (
        loremIpsum = `Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.`
    )
    multilineEntry.SetText(loremIpsum)
    //multilineEntry.Wrapping = fyne.TextWrapBreak
    //multilineEntry.Wrapping = fyne.TextWrapOff
    //multilineEntry.Wrapping = fyne.TextTruncate
    w.SetContent(multilineEntry)
    // show and run
    w.ShowAndRun()
}

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 0 comments

Leave a Reply: