SilicaListView { id: lunchList anchors.fill: parent model: lunchListModel delegate: Item{ height: Theme.itemSizeSmall + Theme.itemSizeSmall*lista.count width: lunchList.width Label { id: lab anchors.top: parent.top text: date } ListView { id: lista anchors.top: lab.bottom anchors.bottom: parent.bottom model: meals delegate: Item { height: Theme.itemSizeSmall Label { text: meal } } } }