hover - Release Flutter applications on the desktop
hover
is a simple tool to help with building a flutter application for desktop.
Hover is brand new and under development, it should be considered alpha. Anything can break, please backup your data before using hover
Getting started
Install
First install go, then install hover like this:
go get -u github.com/go-flutter-desktop/hover
Run the same command to update when a newer version becomes available.
Use
cd into a flutter project.
cd
The first time you use hover for a project, you'll need to initialize the project for desktop. hover init
requires a project path. This is usualy the path for your project on github or a self-hosted git service. If you are unsure, just make something up, it can always be changed later.
hover init github.com/my-project/simpleApplication
This creates the directory desktop
and adds Go files.
You may add plugins in desktop/cmd/options.go
Optionally change the logo in desktop/assets/logo.png
, which is used as icon for the window.
To build and execute, run:
hover build
cd desktop/build/outputs/linux
./yourApplicationName
Issues
Please report issues at the go-flutter issue tracker.