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 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
Types ¶
type Builder ¶
type Builder struct {
// contains filtered or unexported fields
}
Builder generate the executables.
func NewBuilder ¶
func NewBuilder() *Builder
NewBuilder returns a command that can handle the build of GUI apps built using Fyne.
type Bundler ¶
type Bundler struct {
// contains filtered or unexported fields
}
Bundler bundles resources into Go code.
func NewBundler ¶
func NewBundler() *Bundler
NewBundler returns a command that can handle the bundling assets into a GUI app binary.
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.
type Installer ¶
type Installer struct { Packager *Packager // contains filtered or unexported fields }
Installer installs locally built Fyne apps.
func NewInstaller ¶
func NewInstaller() *Installer
NewInstaller returns a command that can install a GUI apps built using Fyne from local source code.
type Packager ¶
type Packager struct {
// contains filtered or unexported fields
}
Packager wraps executables into full GUI app packages.
func NewPackager ¶
func NewPackager() *Packager
NewPackager returns a command that can handle the packaging a GUI apps built using Fyne from local source code.