-
Bug
-
Resolution: Done
-
P2: Important
-
5.6.0 RC
-
None
-
a055629f43cf8589ff6d69e46b2610429aaa4167, aed9b6cb7 (tqtc/lts-5.15)
The last page appears over the first page:
import QtQuick 2.6 import QtQuick.Layouts 1.0 import Qt.labs.controls 1.0 ApplicationWindow { visible: true width: 640 height: 480 title: qsTr("Hello World") header: PageIndicator { id: pi interactive: true count: views.count currentIndex: views.currentIndex } SwipeView { id: views anchors.fill: parent currentIndex: pi.currentIndex TextArea { id: vertextShader placeholderText: qsTr("Text Area 1") } TextArea { id: fragmentShader placeholderText: qsTr("Text Area 2") } Item { } Flickable { clip: true contentHeight: content.height contentWidth: content.width Grid { id: content columns: 8 Repeater { model: 80 delegate: Button { height: width text: "GL_TEXTURE" + modelData background: Image { id: image } } } } } } }
Test case 2
ApplicationWindow {
visible: true
width: 640
height: 480
title: qsTr("Hello World")
header: PageIndicator {
id: pi
interactive: true
count: views.count
currentIndex: views.currentIndex
}
SwipeView {
id: views
anchors.fill: parent
currentIndex: pi.currentIndex
Column {
anchors.horizontalCenter: parent.horizontalCenter
Label {
anchors.horizontalCenter: parent.horizontalCenter
horizontalAlignment: Text.AlignHCenter
text: qsTr("Test 1")
}
Label {
anchors.horizontalCenter: parent.horizontalCenter
style: Text.Normal
textFormat: Text.RichText
text: qsTr("<p>
bla bla bla page 1 </p>")
onLinkActivated: Qt.openUrlExternally(link);
}
}
Column {
Label {
anchors.horizontalCenter: parent.horizontalCenter
horizontalAlignment: Text.AlignHCenter
text: qsTr("Test 2")
}
Label {
anchors.horizontalCenter: parent.horizontalCenter
style: Text.Normal
textFormat: Text.RichText
text: qsTr("<p>
bla bla bla page 2 </p>")
onLinkActivated: Qt.openUrlExternally(link);
}
}
Column {
Label {
anchors.horizontalCenter: parent.horizontalCenter
horizontalAlignment: Text.AlignHCenter
text: qsTr("Test 3")
}
Label {
anchors.horizontalCenter: parent.horizontalCenter
style: Text.Normal
textFormat: Text.RichText
text: qsTr("<p>
bla bla bla page 3 </p>")
onLinkActivated: Qt.openUrlExternally(link);
}
}
}
}
- relates to
-
QTBUG-102487 [REG 5.15.8 -> 5.15.9 + 6.2.3 -> 6.3.0] SwipeView shows last page on first page
-
- Closed
-
-
QTBUG-115468 Dynamically adding items to SwipeView may add new items behind the current item
-
- Closed
-
- resulted in
-
QTBUG-99547 PathView item does not appear in certain circumstance
-
- Closed
-