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

*solved* Fyne error: Attempt to access current Fyne app when none is started

I’ve been trying to figure out what is causing this error… Might just be me, but maybe you can see what i can’t. Hopefully you can give me a helping hand. Whenever I run my code it gives this error Fyne error: Attempt to access current Fyne app when none is started go/pkg/mod/fyne.io/fyne/v2@v2.2.3/app.go:92 Any idea?… Read More *solved* Fyne error: Attempt to access current Fyne app when none is started