Uploaded image for project: 'Qt'
  1. Qt
  2. QTBUG-111104

Flickable doesn't update the screen when scrolling

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Fixed
    • Icon: P2: Important P2: Important
    • 6.8.1
    • 6.2.1, 6.4.2, 6.5.0 Beta2
    • None
    • Android 6.0, 8.0 (go edition)
    • Android, Linux/X11

      The attached video is recorded with the display of touchs enabled.

      While scrolling, the screen "jumps" when the touch point is near the point
      where the scrolling started.

      This bug also happens in ListView, TableView and TreeView.

      This happens on Android using the touch interface. It doesn't happen
      on linux using a mouse.

      import QtQuick
      import QtQuick.Layouts
      
      Window {
          id: root
      
          width: 360
          height: 480
          visible: true
      
          Flickable {
              anchors.fill: parent
              contentHeight: repeater.implicitHeight
      
              ColumnLayout {
                  id: repeater
      
                  Repeater {
                      model: 100
      
                      Rectangle {
                          width: root.width
                          height: 60
                          color: "green"
      
                          Text {
                              anchors.centerIn: parent
                              text: model.index
                          }
                      }
                  }
              }
          }
      }
      

        No reviews matched the request. Check your Options in the drop-down menu of this sections header.

            richard Richard Moe Gustavsen
            ste Stefano Moretti
            Votes:
            1 Vote for this issue
            Watchers:
            3 Start watching this issue

              Created:
              Updated:
              Resolved:

                There are no open Gerrit changes