Skip to content

Application API

The Application is the core of your Wails app. It manages windows, services, events, and provides access to all platform features.

import "github.com/wailsapp/wails/v3/pkg/application"
app := application.New(application.Options{
Name: "My App",
Description: "My awesome application",
Services: []application.Service{
application.NewService(&MyService{}),
},
})

Starts the application event loop.

func (a *App) Run() error

Example:

err := app.Run()
if err != nil {
log.Fatal(err)
}

Returns: Error if startup fails

Gracefully shuts down the application.

func (a *App) Quit()

Example:

// In a menu handler
menu.Add("Quit").OnClick(func(ctx *application.Context) {
app.Quit()
})

Returns the application configuration.

func (a *App) Config() Options

Example:

config := app.Config()
fmt.Println("App name:", config.Name)

Creates a new webview window with default options.

func (wm *WindowManager) New() *WebviewWindow

Example:

window := app.Window.New()
window.Show()

Creates a new webview window with custom options.

func (wm *WindowManager) NewWithOptions(options WebviewWindowOptions) *WebviewWindow

Example:

window := app.Window.NewWithOptions(application.WebviewWindowOptions{
Title: "My Window",
Width: 800,
Height: 600,
BackgroundColour: application.NewRGB(255, 255, 255),
})

Gets a window by its name.

func (wm *WindowManager) GetByName(name string) Window

Example:

window := app.Window.GetByName("main")
if window != nil {
window.Show()
}

Returns all application windows.

func (wm *WindowManager) GetAll() []Window

Example:

windows := app.Window.GetAll()
for _, window := range windows {
fmt.Println("Window:", window.Name())
}

The Application provides access to various managers through properties:

app.Window // Window management
app.Menu // Menu management
app.Dialog // dialog management
app.Event // Event management
app.Clipboard // Clipboard operations
app.Screen // Screen information
app.SystemTray // System tray
app.Browser // Browser operations
app.Env // Environment variables
// Create window
window := app.Window.New()
// Show dialog
app.Dialog.Info().SetMessage("Hello!").Show()
// Copy to clipboard
app.Clipboard.SetText("Copied text")
// Get screens
screens := app.Screen.GetAll()

Registers a service with the application.

func (a *App) RegisterService(service Service) error

Example:

type MyService struct {
app *application.Application
}
func NewMyService(app *application.Application) *MyService {
return &MyService{app: app}
}
// Register after app creation
app.RegisterService(application.NewService(NewMyService(app)))

Emits a custom event.

func (em *EventManager) Emit(name string, data ...interface{})

Example:

// Emit event with data
app.Event.Emit("user-logged-in", map[string]interface{}{
"username": "john",
"timestamp": time.Now(),
})

Listens for custom events.

func (em *EventManager) On(name string, callback func(*CustomEvent))

Example:

app.Event.On("user-logged-in", func(e *application.CustomEvent) {
data := e.Data.(map[string]interface{})
username := data["username"].(string)
fmt.Println("User logged in:", username)
})

Listens for application lifecycle events.

func (em *EventManager) OnApplicationEvent(eventType ApplicationEventType, callback func(*ApplicationEvent)) func()

Example:

// Listen for shutdown
app.Event.OnApplicationEvent(application.EventApplicationShutdown, func(e *application.ApplicationEvent) {
fmt.Println("Application shutting down")
// Cleanup
})

Dialogs are accessed through the app.Dialog manager. See Dialogs API for complete reference.

// Information dialog
app.Dialog.Info().
SetTitle("Success").
SetMessage("Operation completed!").
Show()
// Error dialog
app.Dialog.Error().
SetTitle("Error").
SetMessage("Something went wrong.").
Show()
// Warning dialog
app.Dialog.Warning().
SetTitle("Warning").
SetMessage("This action cannot be undone.").
Show()

Question dialogs use button callbacks to handle user responses:

dialog := app.Dialog.Question().
SetTitle("Confirm").
SetMessage("Continue?")
yes := dialog.AddButton("Yes")
yes.OnClick(func() {
// Handle yes
})
no := dialog.AddButton("No")
no.OnClick(func() {
// Handle no
})
dialog.SetDefaultButton(yes)
dialog.SetCancelButton(no)
dialog.Show()
// Open file dialog
path, err := app.Dialog.OpenFile().
SetTitle("Select File").
AddFilter("Images", "*.png;*.jpg").
PromptForSingleSelection()
// Save file dialog
path, err := app.Dialog.SaveFile().
SetTitle("Save File").
SetFilename("document.pdf").
AddFilter("PDF", "*.pdf").
PromptForSingleSelection()
// Folder selection (use OpenFile with directory options)
path, err := app.Dialog.OpenFile().
SetTitle("Select Folder").
CanChooseDirectories(true).
CanChooseFiles(false).
PromptForSingleSelection()

The application provides a structured logger:

app.Logger.Info("Message", "key", "value")
app.Logger.Error("Error occurred", "error", err)
app.Logger.Debug("Debug info")
app.Logger.Warn("Warning message")

Example:

func (s *MyService) ProcessData(data string) error {
s.app.Logger.Info("Processing data", "length", len(data))
if err := process(data); err != nil {
s.app.Logger.Error("Processing failed", "error", err)
return err
}
s.app.Logger.Info("Processing complete")
return nil
}

For applications that need direct, low-level control over frontend-to-backend communication, Wails provides the RawMessageHandler option. This bypasses the standard binding system.

The RawMessageHandler callback receives raw messages sent from the frontend using System.invoke().

func (a *App) RawMessageHandler(window Window, message string)

Example:

app := application.New(application.Options{
Name: "My App",
RawMessageHandler: func(window application.Window, message string) {
// Handle the raw message
fmt.Printf("Received from %s: %s\n", window.Name(), message)
// You can respond using events
window.EmitEvent("response", processMessage(message))
},
})

For more details, see the Raw Messages Guide.

Configure Windows-specific behavior at the application level:

app := application.New(application.Options{
Name: "My App",
Windows: application.WindowsOptions{
// WebView2 browser flags (apply to ALL windows)
EnabledFeatures: []string{"msWebView2EnableDraggableRegions"},
DisabledFeatures: []string{"msExperimentalFeature"},
AdditionalBrowserArgs: []string{"--remote-debugging-port=9222"},
// Other Windows options
WndClass: "MyAppClass",
WebviewUserDataPath: "", // Default: %APPDATA%\[BinaryName.exe]
WebviewBrowserPath: "", // Default: system WebView2
DisableQuitOnLastWindowClosed: false,
},
})

Browser Flags:

  • EnabledFeatures - WebView2 feature flags to enable
  • DisabledFeatures - WebView2 feature flags to disable
  • AdditionalBrowserArgs - Chromium command-line arguments

See Window Options - Application-Level Windows Options for detailed documentation.

app := application.New(application.Options{
Name: "My App",
Mac: application.MacOptions{
ActivationPolicy: application.ActivationPolicyRegular,
ApplicationShouldTerminateAfterLastWindowClosed: true,
},
})
app := application.New(application.Options{
Name: "My App",
Linux: application.LinuxOptions{
ProgramName: "my-app",
DisableQuitOnLastWindowClosed: false,
},
})
package main
import (
"github.com/wailsapp/wails/v3/pkg/application"
)
func main() {
app := application.New(application.Options{
Name: "My Application",
Description: "A demo application",
Mac: application.MacOptions{
ApplicationShouldTerminateAfterLastWindowClosed: true,
},
})
// Create main window
window := app.Window.NewWithOptions(application.WebviewWindowOptions{
Title: "My App",
Width: 1024,
Height: 768,
MinWidth: 800,
MinHeight: 600,
BackgroundColour: application.NewRGB(255, 255, 255),
URL: "http://wails.localhost/",
})
window.Centre()
window.Show()
app.Run()
}