Learn what Felgo offers to help your business succeed. Start your free evaluation today! Felgo for Your Business

Forums

OverviewFelgo 3 Support (Qt 5) › Critical Scrolling Felgo Issue

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #24375

    nks (baumemo)

    Hi,

    I updated to the newest Felgo version 3.9. A simple app with the following code has massive scrolling problems on my Pixel 5 (Desktop version works):

    Main.qml

    import Felgo 3.0
    import QtQuick 2.0
    import "pages"
    
    App {
        NavigationStack {
            initialPage: First {
            }
        }
    }
    

    First.qml:

    import Felgo 3.0
    import QtQuick 2.0
    
    Page {
        id: page
        title: qsTr("First")
        AppListView {
            id: listView
            anchors.fill: parent
            model: 10
            delegate: SimpleRow {
                text: "a" + model.index
                onSelected: page.navigationStack.push(second)
            }
        }
    
        Component {
            id: second
            Second {}
        }
    }
    

    Second.qml:

    import Felgo 3.0
    import QtQuick 2.0
    
    Page {
        id: page
        title: qsTr("Second")
        AppListView {
            id: listView
            anchors.fill: parent
            model: 10
            delegate: SimpleRow {
                text: "b" + model.index
            }
        }
    }
    

    Here is the video of that issue. Please fix it fast :). Felgo is unusable with that issue.

    https://streamable.com/5c87ct

     

    Regards

     

    #24377

    Alex
    Felgo Team

    Hi,

    please set the bottomMargin property of your AppListView to:

    bottomMargin: nativeUtils.safeAreaInsets.bottom

    In case you are using a bottom tab navigation, you can also set it to 0 instead.

    This should fix the issue.

    Best,
    Alex

    #24384

    nks (baumemo)

    Hi Alex,

    thanks for the hint. I have found out this was a change in 3.9. Many examples in felgo live client has issues because of this change.

    I will fix it in my app.

    Regards

    #24385

    Alex
    Felgo Team

    Hi,

    exactly. This will be fixed in the upcoming 3.9.1 update.

    Best,
    Alex

Viewing 4 posts - 1 through 4 (of 4 total)

RSS feed for this thread

You must be logged in to reply to this topic.

Qt_Technology_Partner_RGB_475 Qt_Service_Partner_RGB_475_padded