Does he work in Drawer
? I tried it in different ways, but the page refuses to scroll.
One variant of the example
import QtQuick 2.7 import QtQuick.Controls 2.0 import QtQuick.Controls.Material 2.0 Drawer { id: drawer width: Math.min(window.width, window.height) / 3 * 2 height: window.height Flickable { contentHeight: drawer.height Column { Repeater { model: 150 Text { text: "OMG" } } } } }