How to make the text scrollable with canvas.NewText() with fyne Go
I am new to programming and i want to develop a application but i need show to users very large text in my application. I am not sure widget.NewRichTextWithText() is for this purpose. This code working as i expected. package main import ( "strings" "fyne.io/fyne/v2" "fyne.io/fyne/v2/app" "fyne.io/fyne/v2/container" "fyne.io/fyne/v2/widget" ) func main() { a := app.New()… Read More How to make the text scrollable with canvas.NewText() with fyne Go