Ubuntu.Components.ProgressionSlot

ProgressionSlot holds an icon representing the progression symbol. More...

Import Statement: import Ubuntu.Components 1.3
Inherits:

Icon

Detailed Description

ProgressionSlot is designed to provide an easy way for developers to add a progression symbol to the list item created using ListItemLayout or SlotsLayout.

ListItemLayout will automatically accomodate the progression symbol as the last trailing slot inside the layout. For more details, see ListItemLayout documentation.

The following is an example of how easy it is to implement list items using ListItem with ListItemLayout and ProgressionSlot:

ListItem {
height: layout.height
onClicked: pushPageOnStack()
ListItemLayout {
id: layout
title.text: "Push a new page on the PageStack"
ProgressionSlot {}
}
}

See also ListItemLayout.