MultiValue

List item displaying multiple values. This component is under heavy development. More...

Properties

Detailed Description

Examples:

import Ubuntu.Components.ListItems 0.1 as ListItem
Column {
    ListItem.MultiValue {
        text: "Label"
        values: ["Value 1", "Value 2", "Value 3", "Value 4"]
        onClicked: selected = !selected
    }
    ListItem.MultiValue {
        text: "Label"
        icon: Qt.resolvedUrl("icon.png")
        values: ["Value 1", "Value 2", "Value 3", "Value 4"]
        progression: true
        onClicked: print("clicked")
    }
}

Property Documentation

text : string

This documentation is under development and is subject to change.

The text that is shown in the list item as a label.


values : variant

This documentation is under development and is subject to change.

The list of values that will be shown under the label text