Kirigami Addons

Kirigami Addons is an additional set of visual components that work well on mobile and desktop and are guaranteed to be cross-platform.

It uses Kirigami under the hood to create its components and should look native with any QtQuick Controls style.

A tutorial for Kirigami Addons can be found over the KDE Developer Platform.

Using the Module

Using a KDE module's C++ API requires linking against the module library. The preferred way of consuming the library is through CMake.

Building with CMake

To import only the Kirigami Addons QML modules:

ecm_find_qml_module(org.kde.kirigamiaddons REQUIRED)

To import Kirigami Addons into your project using CMake:

Use the find_package() command to locate the needed module component in the KF6 package:

find_package(KF6 REQUIRED COMPONENTS KirigamiAddons)
target_link_libraries(mytarget PRIVATE KF6::KirigamiAddons)

For more details, see the Build with CMake overview.

API Reference

Licenses

TODO