Designing cross-platform GUI apps with Fyne
Adding a Widget
In Fyne, an app can be created by drawing basic types (called CanvasObjects
) to a position within the window. These items are available in the fyne.io/fyne/v2/canvas package. However, you can use a collection of pre-made widgets (fyne.io/fyne/v2/widget) that provides several interactive widgets for the standard user controls and visual items found in most apps.
You can create a new label widget to display the text "TODO App" by simply calling widget.NewLabel("TODO App")
. Then use the SetContent
method to place this widget inside the previously created window. The line of code now becomes:
w.SetContent(widget.NewLabel("TODO App"))
Finally, you must show the window. Because GUI toolkits also have an event loop that manages how the app runs and listens for user input, you also need to run the app. Conveniently, Fyne has a method that simultaneously shows the window and runs the application:
w.ShowAndRun()
That is all there is to creating your first graphical app.
Running the App
To run the app, you can use go run
, or you could build it using go build
and then later run the executable that was created. However, because you have added a new library, you should run go mod tidy
first to ensure the project metadata is up-to-date. After this, you can run the app with:
> go mod tidy go: finding module for package fyne.io/fyne/v2/app go: found fyne.io/fyne/v2/app in fyne.io/fyne/v2 v2.3.4 > go run .
Telling the Go compiler to run "." means it runs all the files in the current directory (main.go
for your app). Your app should now look something like Figure 1. Depending on your desktop settings, the app may appear with a light or a dark theme.
Building the User Interface
Before you start building more complex content for your app, I need to explain Container
types. Containers are what allow multiple elements to be arranged in an area, and they do so according to a layout. There are many standard containers for common types of positioning in Fyne. You can also add your own layout code. (I won't cover that in this article, but you can find out more online [2].)
These container types include VBox
and HBox
(for packing child items into vertical or horizontal boxes), Split
(to allow users to drag a split bar separating two child items), or Stack
(to allow multiple items to be drawn on top of each other). The most popular, and flexible, container is Border
, which you will use twice in the to-do list app. The Border
container takes four required fields for items to be positioned along the top, bottom, left, and right edges, and an optional fifth parameter for the content that should fill the remaining (central) space.
The app is split into two main areas: the top bar (where you will position the "New item"
entry widget) and the to-do list area, which fills the main area. In essence, the app's entire layout is captured as:
container.NewBorder(head, nil, nil, nil, list)
The app uses a new package called container, which is from fyne.io/fyne/v2/container
.
To make the top bar, you will use another Border
container, which will have an Entry
widget for the user input (Listing 3) and a new Button
widget using an icon for adding content, which is available in the standard theme. (I will add code to respond to user input later.)
Listing 3
Input Widgets
01 input := widget.NewEntry() 02 input.SetPlaceHolder("New item") 03 add := widget.NewButtonWithIcon("", 04 theme.ContentAddIcon(), func() { 05 log.Println("new item tapped") 06 }) 07 head := container.NewBorder(nil, nil, nil, add, input)
Listing 3 defines the app's user interface except for the to-do list in main area.
Buy this article as PDF
(incl. VAT)
Buy Linux Magazine
Subscribe to our Linux Newsletters
Find Linux and Open Source Jobs
Subscribe to our ADMIN Newsletters
Support Our Work
Linux Magazine content is made possible with support from readers like you. Please consider contributing when you’ve found an article to be beneficial.
News
-
Gnome 47.2 Now Available
Gnome 47.2 is now available for general use but don't expect much in the way of newness, as this is all about improvements and bug fixes.
-
Latest Cinnamon Desktop Releases with a Bold New Look
Just in time for the holidays, the developer of the Cinnamon desktop has shipped a new release to help spice up your eggnog with new features and a new look.
-
Armbian 24.11 Released with Expanded Hardware Support
If you've been waiting for Armbian to support OrangePi 5 Max and Radxa ROCK 5B+, the wait is over.
-
SUSE Renames Several Products for Better Name Recognition
SUSE has been a very powerful player in the European market, but it knows it must branch out to gain serious traction. Will a name change do the trick?
-
ESET Discovers New Linux Malware
WolfsBane is an all-in-one malware that has hit the Linux operating system and includes a dropper, a launcher, and a backdoor.
-
New Linux Kernel Patch Allows Forcing a CPU Mitigation
Even when CPU mitigations can consume precious CPU cycles, it might not be a bad idea to allow users to enable them, even if your machine isn't vulnerable.
-
Red Hat Enterprise Linux 9.5 Released
Notify your friends, loved ones, and colleagues that the latest version of RHEL is available with plenty of enhancements.
-
Linux Sees Massive Performance Increase from a Single Line of Code
With one line of code, Intel was able to increase the performance of the Linux kernel by 4,000 percent.
-
Fedora KDE Approved as an Official Spin
If you prefer the Plasma desktop environment and the Fedora distribution, you're in luck because there's now an official spin that is listed on the same level as the Fedora Workstation edition.
-
New Steam Client Ups the Ante for Linux
The latest release from Steam has some pretty cool tricks up its sleeve.