ToolbarItem
A button in the page's navigation bar.
- Kind: Class
- Namespace: SkeleKit
Properties
Command
Invoked when the item is tapped; its CanExecute drives the enabled state.
Type: ICommand?
CommandParameter
The parameter passed to Command.
Type: object?
Icon
The local icon, or null for a text-only item.
Type: ImageSource?
IsPrimary
Whether the item is rendered as the prominent action.
Type: bool
IsVisible
Whether the item is in the bar at all.
Contextual actions toggle it live, like a Delete that only exists in edit mode.
Type: bool
Menu
Menu entries shown on tap instead of invoking Command. Empty for a plain item.
Type: IList<MenuAction>
Side
Which side of the bar the item sits on.
Type: ToolbarSide
Text
The item's text, or null when it shows only an icon.
Type: string?
Tint
The item's tint, or null to follow the page or app tint.
Type: Color?