Fyne (software)

From Wikipedia the free encyclopedia

Original author(s)Andrew Williams
Developer(s)Andrew Williams, Cedric Bail, Changkun Ou, Charles Daniels, Drew Weymouth, Jacob Alzén, Luca Corbo, Pablo Fuentes, Steve O'Connor, Stephen Houston, Stuart Scott, Tilo Prütz
Initial releaseFebruary 5, 2018; 6 years ago (2018-02-05)
Stable release
2.4.4 / February 13, 2024; 56 days ago (2024-02-13)[1]
Written inGo
Operating systemLinux, Unix-like, macOS, Windows, IOS, Android (operating system)
TypeWidget toolkit
LicenseNew BSD License
Websitefyne.io

Fyne is a free and open-source cross-platform widget toolkit for creating graphical user interfaces (GUIs) across desktop and mobile platforms. It is designed to enable developers to build applications that run on multiple desktop and mobile platforms/versions from a single code base.[2] Fyne uses OpenGL to provide cross-platform graphics. It is inspired by the principles of Material Design to create applications that look and behave consistently across all platforms.[3] It is licensed under the terms of the 3-clause BSD License, supporting the creation of free and proprietary applications. In December 2019 Fyne became the most popular GUI toolkit for Go, by GitHub star count[4] and in early February 2020 it was trending as #1 project in GitHub trending ranks.[5]

Development[edit]

Fyne is currently developed by a team of volunteers and is supported by around 40 contributors.[6] Members of this group also work on the FyneDesk project to create a new Linux desktop environment.[7]

The Fyne toolkit is written primarily in Go.[8] The team focuses on clean APIs and follows the principles of Clean Code to sustain maintainability of the project.[9] All Fyne projects are continuously tested to check correctness, stability as well as formatting and documentation.[10][11]

Example[edit]

The code required for a simple "Hello World" application is minimal, as follows:

package main  import ( 	"fyne.io/fyne/v2/app" 	"fyne.io/fyne/v2/container" 	"fyne.io/fyne/v2/widget" )  func main() {     a := app.New()     w := a.NewWindow("Hello")      hello := widget.NewLabel("Hello Fyne!")     w.SetContent(container.NewVBox(         hello,         widget.NewButton("Hi!", func() {             hello.SetText("Welcome :)")         }),     ))      w.ShowAndRun() } 

To build this application you will need the Go language and a C compiler installed, as well as a graphics driver that supports OpenGL. It can be built and run using the command: $ go run main.go

Design[edit]

Design of the Fyne API and user interface components follows a careful process to ensure the simplicity.[12] The Fyne toolkit is built in various layers, with each in separate packages. Notable layers include:[13]

API[edit]

API, or Application programming interface, is an interface or protocol that allows for communication across different parts of the software. Fyne has a self-documenting API that is also extensible resulting in the ability for each developer to create custom tools unique to their project that will mesh with Fyne itself.

Vector graphics[edit]

The use of vector graphics to paint the UI provides a method of adapting to different device and display sizes without losing image fidelity. This allows the programmer to only need to create the UI once and it will look as expected on any device.

Hierarchy[edit]

Canvas[edit]

Canvas contains all of the contents of a window ranging from the full screen to a group of CanvasObjects.

CanvasObject[edit]

CanvasObjects are what actually get rendered on screen such as Text, Rectangle, Line. The objects store size, position and color information for the rendering process.

Container[edit]

Containers are groups of CanvasObjects, each container can specify a layout which will contain the sizing and position of its child components. Layouts help the developer arrange components in a manner that response to the container or window size, with several layout types provided including Border, Center, and Grid.

Widget[edit]

All of the components of a window in a CanvasObject are widgets that contain standard user interface elements. Fyne widgets include but are not limited to UI basics such as: Button, Check, Form, Hyperlink, Label, Radio, Select and Toolbar as well as container widgets like AppTabs and Split. Since 1.4 there are additional collection widgets that provide high-performance presentation of large data in a List, Table or Tree view. All the built-in UI widgets ensure that standard aspects of GUI interactivity act in a predictable and expected way across applications. This helps improve quality of programs while assisting the programmer by removing the need for them to create these tools themself.

Packages[edit]

All components of Fyne are split into packages and then connected via the API to create a final GUI application. In addition to the canvas, layout, and widget packages, notable packages include:

  • App package which is the main entry point for the app which manages understanding the type of device the application is running on and ensures the code will run as expected on that device.
  • Test package enabling test-driven development to validate the GUI itself functions as expected.

Use[edit]

The largest project currently using the Fyne toolkit is the FyneDesk project, a complete desktop environment for Linux.[14]

There are many other applications being built using the toolkit, those that are open source can be found in an application listing[15] website managed by the project.

Many businesses are using the Fyne toolkit to quickly add a graphical user interface to command line tools which they have already built using Go. [citation needed]

References[edit]

  1. ^ "Lots of bug fixes and speed improvements for 2.4". github.com. 2023-02-13.
  2. ^ Aurélie, Vache (25 August 2021). "Learning Go by examples: part 7 - Create a cross-platform GUI/Desktop app in Go".
  3. ^ "Scaling and Geometry".
  4. ^ Fyne [@Fyne_io] (December 19, 2019). "We are very excited to announce that Fyne is now the most popular* GUI toolkit for Go! Great news and a huge milestone :). Now we need to figure how to bring the joy of Fyne to the wider coding community. [*] According to GitHub stargazer count ⭐️ #golang #winning #future" (Tweet). Retrieved 2021-01-07 – via Twitter.
  5. ^ Fyne [@Fyne_io] (February 11, 2020). "Oh wow, the ⁦@Fyne_io⁩ project is currently in the #1 slot on GitHub trending list!!! https://t.co/oeRtXklEK9 #congratulations #goland #gui #trending https://t.co/HMy1TpJ3u5" (Tweet). Retrieved 2021-01-07 – via Twitter.
  6. ^ "Contributors to fyne-io/fyne · GitHub". GitHub. 2020-02-25.
  7. ^ Houston, Stephen [@stephenmhouston] (December 31, 2019). "I am so proud of how far we have made it with this desktop in less than a year of work. It is a really great experience and very aesthetically pleasing. Please consider using it if you are a #linux user! #fyne #golang #go #linuxdesktop #desktop https://t.co/jKqWriYrIG" (Tweet). Retrieved 2021-01-07 – via Twitter.
  8. ^ "Unusual uses for Go: GUIs (Go Time #116)".
  9. ^ "fyne/CONTRIBUTING.md at master · fyne-io/fyne · GitHub". GitHub. 2020-02-25.
  10. ^ "Fyne.io - Travis CI".
  11. ^ "Coveralls.io - Test Coverage History and Statistics".
  12. ^ "The careful process behind Fyne's simplicity".
  13. ^ Archived at Ghostarchive and the Wayback Machine: "GoLab 2019 - Andrew Williams - Easily build cross platform graphical applications with Fyne". YouTube.
  14. ^ "A full desktop environment for Linux/Unix using Fyne: Fyne-io/Desktop". GitHub. 2020-02-24.
  15. ^ "Fyne Apps Listing".

Bibliography[edit]

External links[edit]