ThinDivider

Narrow line used as a divider between ListItems. More...

Detailed Description

ListItems will usually include this line at the bottom of the item to give a visually pleasing list of items. But a divider line can also be inserted manually using this component. This component is under heavy development.

Examples:

import Ubuntu.Components.ListItems 0.1 as ListItem
Column {
    width: 250
    ListItem.ThinDivider {} //can be used as header for list
    ListItem.Standard {
        text: "List Item without thin divider line"
        showDivider: false
    }
    ListItem.ThinDivider {} // manually inserted divider line
    ListItem.Standard {
        text: "ListItem with thin divider line"
    }
}