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