How to make SwipeView Like Circle Mode when last page out first page in?
-
Dear Guys
I want to make slider like Top image slider in app store in my app, this slider's slide when reach to last slider automatically first page come to the next.
By the way, i can use GridView with flow top to bottom but, how can i create rotation on it?
Thanks -
@Advanced Check the below post for details about infinite scrolling of table view.
https://forum.qt.io/topic/52064/infinite-scrolling-of-a-tableviewYou can also perform infinite scrolling using the below options:
1.In QML every property has corresponding change signal. In your case you should listen atYEnd property of ListView:ListView {
id: messageList
// Stuff
onAtYEndChanged: {
if (messageList.atYEnd) {
// Loading tail messages...
}
}
}2.Try a QListView with a proxy (QAbstractProxyModel) that displays your entries with a variable offset and wraps around.