Adding actions
Learning more about Kirigami's Actions will help us make our application more useful.
Last updated
Learning more about Kirigami's Actions will help us make our application more useful.
Last updated
So far, we built a simple app that can display cards. However, there is currently no way for the user to add new cards to the card view.
In this tutorial, we'll be looking at Kirigami actions. These will help us add interactivity to our app in a consistent, fast, and accessible way.
A encapsulates a user interface action. We can use these to provide our applications with easy-to-reach actions that are essential to their functionality.
If you have used Kirigami apps before, you have certainly interacted with Kirigami actions. In this image, we can see actions to the right of the page title with various icons. Kirigami actions can be displayed in several ways and can do a wide variety of things.
A countdown app is pretty useless without the ability to add countdowns. Let's create an action that'll let us do this.
Tip
Other examples of Kirigami Actions showing up differently depending on their parent component are:
Among other Kirigami components.
We are placing our within our main page from the previous tutorials. If we wanted to, we could add more actions to our page (and even nest actions within actions!).
The brackets []
used above are similar to , which means you can pass one or more things to them, separated by comma:
The id
and text
properties should be familiar from previous tutorials. However, the inherited property should be interesting: it is an object with several properties letting you display certain icons for your actions. Fortunately, to use KDE icons all we need to do is provide the name property for the icon property, icon.name
.
Many of KDE's icons follow the FreeDesktop Icon Naming specification. Therefore, you might also find it useful to consult The FreeDesktop project's website, .
The signal handler is the most important. This is what our action will do when it is used. You'll notice that in our example we're using the method of the kountdownModel
we created in our previous tutorial. This method lets us append a new element to our list model. We are providing it with an object (indicated by curly braces {}
) that has the relevant properties for our countdowns (name
, description
, and a placeholder date
).
The next component is a . It shows up as a . By default it opens a sidebar, which is especially useful on mobile, as the user can just swipe in a side of the screen to open it. Global drawers are useful for global navigation and actions. We are going to create a simple global drawer that includes a "quit" button.
Here, we put our global drawer inside our application window. The main property we need to pay attention to is , which takes the form of an array of components. This action has an appropriate icon and executes the function when triggered, closing the application.
Since we are keeping our global drawer simple for now, we are setting the property to true
. This displays our global drawer as a normal application menu, taking up less space than the default global drawer pane.
The page of these docs provides further detail on Kirigami Actions and how they can be used.
Kirigami components are designed in such a way that the place where you put Kirigami Actions is relevant. As seen above, if you add actions to a , or any other derivative Page component, they will show up on the right side of the header in desktop mode, and on the bottom in mobile mode.
Similarly, if Kirigami Actions are added to a , they will show up in the resulting drawer or menu.
-
and derivatives -
and derivatives -
-