Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/fyne-io/examples
Examples apps using the Fyne toolkit
https://github.com/fyne-io/examples
fyne go golang gui hacktoberfest
Last synced: 8 days ago
JSON representation
Examples apps using the Fyne toolkit
- Host: GitHub
- URL: https://github.com/fyne-io/examples
- Owner: fyne-io
- License: other
- Created: 2018-09-09T21:38:30.000Z (about 6 years ago)
- Default Branch: develop
- Last Pushed: 2023-02-27T21:33:26.000Z (over 1 year ago)
- Last Synced: 2024-08-01T00:43:21.091Z (3 months ago)
- Topics: fyne, go, golang, gui, hacktoberfest
- Language: Go
- Homepage:
- Size: 16.1 MB
- Stars: 592
- Watchers: 29
- Forks: 92
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Authors: AUTHORS
Awesome Lists containing this project
README
# Fyne Examples
Here we will gather example apps that use the [Fyne](http://fyne.io) toolkit.
You can start the main example app that links to all the others by running
```bash
go run .
```All these examples are fully scalable - try setting the `FYNE_SCALE`
environment variable to override the detection of your screen's density.
Many also respond to the current theme (this is default behaviour for
apps built using Fyne widgets) - you can try setting `FYNE_THEME=light`
to change from the default dark theme.## Widget based examples
The following examples use mostly built in widgets making applications
trivial to build :).### Calculator
Moved to [calculator repository](https://github.com/fyne-io/calculator/)
### Bugs game (like MineSweeper)
Hunt the squares to reveal everything apart from the bugs!
![](img/bugs.png)
### XKCD
An XKCD comic browser with random and lookup features.
![](img/xkcd.png)
## Graphics based examples
These examples use the Fyne canvas API to draw primitive shapes,
text and images to create custom user interfaces.### Clock
A simple analog clock that matches the current theme.
![](img/clock-dark.png) ![](img/clock-light.png)
### Fractal
A fractal viewer that can be panned and zoomed
![](img/fractal.png)
### Solitaire
Moved to [solitaire repository](https://github.com/fyne-io/solitaire/)
### Life
Moved to [life repository](https://github.com/fyne-io/life/)