Actions based components
Kirigami's Actions are used to add functionality to components.
Last updated
Kirigami's Actions are used to add functionality to components.
Last updated
A consists of a clickable action whose appearance depends on where it is added. Typically it is a button with an icon and text.
We can use these to provide our applications with easy-to-reach actions that are essential to their functionality.
Like , they can be assigned to menu items and toolbar buttons, but also to multiple other Kirigami components.
One feature offered by Kirigami Actions on top of QtQuick Actions is the possibility to nest actions.
In this example, we are creating a "clear" button for a search field that is only visible when text is entered.
Another feature of Kirigami Actions is to provide various hints to items using actions about how they should display the action. These are primarily handled by the and properties.
These properties will be respected by the item if possible. For example, the following action will be displayed as a with the item trying its best to keep itself visible as long as possible.
As mentioned in the , Kirigami Actions are , which means they show up in different places depending on where you put them. In addition to that, they also have different representations for desktop and mobile.
A shows Actions on the right of the top header in desktop mode, and on a footer in mobile mode.
The is a menu-like sidebar that provides an action based navigation to your application. This is where nested actions are useful because it is possible to create nested navigation:
You can read more about Global Drawers in the .
A consists of an additional set of actions that are hidden behind a three-dots menu on the top right in desktop mode or on the bottom right in mobile mode if there is no space. It is used to display actions that are only relevant to a specific page. You can read more about them in our tutorial.
A is used to add some contextual actions to a text field, for example to clear the text, or to search for the text.
You should rarely use an ActionTextField directly. and both inherit from ActionTextField
and are likely to cover your desired use-case.
A is a delegate intended to support extra actions. When using a mouse, its actions will always be shown. On a touch device, they can be shown by dragging the item with the handle. In the following pictures, these are the icons to the right.
A is a toolbar built out of a list of actions. By default, each action that will fit in the toolbar will be represented by a , with those that do not fit being moved into a menu at the end of the toolbar.
Like , you may not need to use directly as it is used by page headers and cards to provide their action display.
You can read more about components in their .
A is used to display a collection of information or actions together. These actions can be added to the actions
group, similarly to previous components.
For more information consult the .