How to use KeyNavigation up/ down/right/left when GridView interactive is false
-
-
Ok, here's an alternative solution:
GridView { interactive: false Keys.onUpPressed: moveCurrentIndexUp() Keys.onDownPressed: moveCurrentIndexDown() Keys.onLeftPressed: moveCurrentIndexLeft() Keys.onRightPressed: moveCurrentIndexRight() }Thanks for your valuable suggestion, I figured it out. we can make
interactive: true
boundsBehavior: GridView.StopAtBounds
so that you can interactive nicely, Sorry for a bad questions, I need to ask how to make GridView Flickable for user when interactive is active.