Toolbar actions

Text-only actions for navigation and window toolbars.

FToolbarAction renders a text-only action with optional haptic feedback. FToolbarActionStyle supports .primary and .dismiss semantic roles.

.toolbar {
    ToolbarItem(placement: .confirmationAction) {
        FToolbarAction("Save", haptic: .light) {
            save()
        }
    }
}

The native toolbar retains ownership of placement and platform behavior.