Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Get Qt Extensions
  • Unsolved
Collapse
Brand Logo
  1. Home
  2. Qt Development
  3. QML and Qt Quick
  4. How to make SwipeView Like Circle Mode when last page out first page in?
Qt 6.11 is out! See what's new in the release blog

How to make SwipeView Like Circle Mode when last page out first page in?

Scheduled Pinned Locked Moved Unsolved QML and Qt Quick
3 Posts 3 Posters 2.0k Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • A Offline
    A Offline
    Advanced
    wrote on last edited by
    #1

    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

    Arvindhan PonnusamyA 1 Reply Last reply
    0
    • A Advanced

      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

      Arvindhan PonnusamyA Offline
      Arvindhan PonnusamyA Offline
      Arvindhan Ponnusamy
      wrote on last edited by
      #2

      @Advanced Check the below post for details about infinite scrolling of table view.
      https://forum.qt.io/topic/52064/infinite-scrolling-of-a-tableview

      You 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.

      1 Reply Last reply
      0
      • GrecKoG Offline
        GrecKoG Offline
        GrecKo
        Qt Champions 2018
        wrote on last edited by
        #3

        Would a Tumbler work for you?

        1 Reply Last reply
        2

        • Login

        • Login or register to search.
        • First post
          Last post
        0
        • Categories
        • Recent
        • Tags
        • Popular
        • Users
        • Groups
        • Search
        • Get Qt Extensions
        • Unsolved