MultiValue

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

Import Statement: import Ubuntu.Components.ListItems 1.0
Inherits:

Base

Properties

Detailed Description

Examples:

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

Property Documentation

values : variant

This QML property is under development and is subject to change.

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