diff options
Diffstat (limited to 'HomeDefault.ui.qml')
-rw-r--r-- | HomeDefault.ui.qml | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/HomeDefault.ui.qml b/HomeDefault.ui.qml index 9a25826..4aa79cb 100644 --- a/HomeDefault.ui.qml +++ b/HomeDefault.ui.qml @@ -284,21 +284,20 @@ Flickable { } } - SwipeView { + StackLayout { id: tabsContent currentIndex: tabs.currentIndex - Layout.fillWidth: true Layout.preferredHeight: popular.height GridView { id: popular interactive: false + Layout.fillWidth: true cellWidth: width < 576 ? width : width < 768 ? width / 2 : width < 992 ? width / 3 : width / 4 cellHeight: cellWidth * 1.3 - width: parent.width height: width < 576 ? cellHeight * count : width < 768 |