Skip to content

Tuner.Route

A navigation row that opens an internal subpage. The id of the route must match the id of the target page. No binding is used.

PropertyTypeDescription
titlestringRow title
subtitlestringText under the title
icon-namestringIcon shown at the start of the row
show-arrowboolShow the arrow at the end of the row (default true)
blp
Tuner.Page {
    title: _("Keyboard");

    Tuner.Group {

        Tuner.Route {
            title: _("Additional Layout Options");
            id: "options";
        }
    }

    Tuner.Page {
        title: _("Additional Layout Options");
        id: "options";
    }
}

Released under the GPL-3.0+ License. The content is available under CC BY-SA 4.0, unless stated otherwise.