ActionBar QML Type
Show a row of buttons that trigger actions. When the number of visible actions specified is larger than numberOfSlots, an overflow button will be shown which triggers an overflow panel that shows the remaining actions. More...
Import Statement: | import Ubuntu.Components 1.2 |
Inherits: |
Properties
- actions : Action
- numberOfSlots : int
Detailed Description
Example:
ActionBar { numberOfSlots: 2 actions: [ Action { iconName: "share" text: "Share" }, Action { iconName: "starred" text: "Favorite" }, Action { iconName: "lock" text: "Lock" } ] }
Property Documentation
actions : Action |
The actions to display in the bar. If more actions are specified than there are slots, an overflow button will be show which opens a popover with the actions that did not fit in the bar directly.
The number of actions to be shown in the bar directly. If the actions don't fit, an overflow button (using one slot) will be shown which opens a popover with the remaining actions.
Setting numberOfSlots to 0 will always show the overflow button and no other action buttons. Default value is 3.