Questions tagged [fyne]

Questions related to Fyne UI of the Go language. Also add [go] tag to your question.

Fyne is a UI toolkit and app API written in Go. It uses OpenGL (through the go-gl and go-glfw projects) to provide cross platform graphics.

138 questions
-2
votes
1 answer

Text fields with different alignment inside one button

Is it possible to extend Fyne’s widget button to accept two different text fields with different alignment inside one button? For example, I want a button to contain: |FILE_NAME ....... FILE_SIZE| I tried to add additional Text field to my…
rs256
  • 69
  • 6
-3
votes
1 answer

Using fyne widgets with OOP-style

I want to combine some standard widget in one custom widget. I can do it if put all of widget fields into one container like so: package main import ( "fmt" "fyne.io/fyne" "fyne.io/fyne/app" "fyne.io/fyne/layout" …
RimeBeliskner
  • 352
  • 3
  • 14
1 2 3
9
10