Actions based components
Kirigami's Actions are used to add functionality to components.
Actions
import org.kde.kirigami as Kirigami
Kirigami.Action {
id: copyAction
text: i18n("Copy")
icon.name: "edit-copy"
shortcut: StandardKey.Copy
onTriggered: {
// ...
}
}Using actions in other components
Page


Global drawer

Context drawer


ActionTextFields

SwipeListItem


ActionToolBar

Cards

Last updated