import QtQuick 2.4 import Ubuntu.Components 1.3 ListView { width: 600 height: 800 model: 30 delegate: ListItem { Label { text: index } leadingActions: ListItemActions { actions: [] } trailingActions: ListItemActions { actions: [] } } }