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" } } } } } 

Closed due to the fact that the essence of the issue is not clear by the participants user194374, aleksandr barakin , Streletz , αλεχολυτ , dirkgntly Sep 2, 16 at 13:35 .

Try to write more detailed questions. To get an answer, explain what exactly you see the problem, how to reproduce it, what you want to get as a result, etc. Give an example that clearly demonstrates the problem. If the question can be reformulated according to the rules set out in the certificate , edit it .

  • IMHO, it should work, but there may be bugs, since the new component is Qt 5.7. If you put the code, it will be easier to prompt. - pier_nasos
  • added to the topic. - Amir Afendin

1 answer 1

 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 { anchors.fill: parent contentHeight: idContentColumn.height Column { id: idContentColumn Repeater { model: 150 Text { text: "OMG" } } } } } 
  • Like a boss. Thank you very much. - Amir Afendin