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

While flicking in Flickable reversing direction not possible on BB10

    XMLWordPrintable

Details

    Description

      This issue happens on BB10 but not on desktop.

      To reproduce:
      1) Create UI with long Flickable
      2) Swipe to flick the content upwards
      3) While content scrolls swipe downwards

      Outcome:
      Desktop: After one downwards swipe, content scrolls downwards.
      BB10: After the first downwards swipe, scrolling stops. Only after second downwards swipe the content scrolls downwards.

      Also if while scrolling you touch the content and keep the finger down, it is not possible to move the content.

      Here is a complete sample to reproduce that issue:

      import QtQuick 2.0
      
      Rectangle {
          width: 768
          height: 1280
      
          Flickable {
              clip: true
              contentHeight: column.height
              anchors.fill: parent
      
              Column {
                  id: column
                  anchors.left: parent.left
                  anchors.right: parent.right
      
                  Repeater {
                      model: 100
                      
                      Rectangle {
                          height: 100
                          color: "gray"
                          border.color: "white"
                          border.width: 5
                          anchors.left: parent.left
                          anchors.right: parent.right
                      }
                  }
              }
          }
      }
      

      Attachments

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

        Activity

          People

            srutledg Shawn Rutledge
            conny Cornelius Hald
            Votes:
            2 Vote for this issue
            Watchers:
            6 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved:

              Gerrit Reviews

                There are no open Gerrit changes