Documentation ¶
Index ¶
- func Build() *cli.Command
- func Bundle() *cli.Command
- func Env() *cli.Command
- func Get() *cli.Command
- func Install() *cli.Command
- func Package() *cli.Command
- func Release() *cli.Command
- func Serve() *cli.Command
- func Vendor() *cli.Commanddeprecated
- func Version() *cli.Command
- type Builder
- type Bundler
- func (b *Bundler) AddFlags()deprecated
- func (b *Bundler) PrintHelp(indent string)deprecated
- func (b *Bundler) Run(args []string)deprecated
- type Getter
- type Installer
- func (i *Installer) AddFlags()deprecated
- func (i *Installer) PrintHelp(indent string)deprecated
- func (i *Installer) Run(args []string)deprecated
- type Packager
- type Releaser
- func (r *Releaser) AddFlags()deprecated
- func (r *Releaser) PrintHelp(indent string)deprecated
- func (r *Releaser) Run(params []string)deprecated
- type Server
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func Get ¶
func Get() *cli.Command
Get returns the command which downloads and installs fyne applications.
func Install ¶
func Install() *cli.Command
Install returns the cli command for installing fyne applications
func Package ¶
func Package() *cli.Command
Package returns the cli command for packaging fyne applications
func Release ¶
func Release() *cli.Command
Release returns the cli command for bundling release builds of fyne applications
func Serve ¶
func Serve() *cli.Command
Serve return the cli command for serving fyne wasm application over http
func Vendor
deprecated
func Vendor() *cli.Command
Vendor returns the vendor cli command.
Deprecated: Use "go mod vendor" instead.
Types ¶
type Builder ¶
type Builder struct {
// contains filtered or unexported fields
}
Builder generate the executables.
type Bundler ¶
type Bundler struct {
// contains filtered or unexported fields
}
Bundler bundles resources into Go code.
type Getter ¶
type Getter struct {
// contains filtered or unexported fields
}
Getter is the command that can handle downloading and installing Fyne apps to the current platform.
func NewGetter ¶
func NewGetter() *Getter
NewGetter returns a command that can handle the download and install of GUI apps built using Fyne. It depends on a Go and C compiler installed at this stage and takes a single, package, parameter to identify the app.
type Installer ¶
type Installer struct { Packager *Packager // contains filtered or unexported fields }
Installer installs locally built Fyne apps.
type Packager ¶
type Packager struct {
// contains filtered or unexported fields
}
Packager wraps executables into full GUI app packages.