From 640d2ccc4a9caa9b2288277cec2a19e2fc3e7239 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EA=A6=8C=EA=A6=AB=EA=A6=B6=EA=A6=8F=EA=A7=80=EA=A6=A6?= =?UTF-8?q?=EA=A6=BF=EA=A6=A7=EA=A6=AE=EA=A6=91=EA=A6=A9=EA=A6=AD=EA=A7=80?= Date: Fri, 3 Mar 2023 09:01:52 +0800 Subject: This works without relying on custom property that needs to be set upon component completion --- HomeDefault.ui.qml | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/HomeDefault.ui.qml b/HomeDefault.ui.qml index 4f420d6..0f706cf 100644 --- a/HomeDefault.ui.qml +++ b/HomeDefault.ui.qml @@ -270,15 +270,17 @@ Flickable { StackLayout { currentIndex: tabs.currentIndex - property int currentCount: 8 - Layout.preferredHeight: width < 576 ? width * 1.3 - * currentCount - : width < 768 ? width / 2 * 1.3 - * (currentCount + currentCount % 2) / 2 - : width < 992 ? width / 3 * 1.3 - * (currentCount + (currentCount + 1) % 3) / 3 + Layout.preferredHeight: width < 576 + ? width * 1.3 + * tabsContent.itemAt(tabsContent.index).count + : width < 768 + ? width / 2 * 1.3 + * (tabsContent.itemAt(tabsContent.index).count + tabsContent.itemAt(tabsContent.index).count % 2) / 2 + : width < 992 + ? width / 3 * 1.3 + * (tabsContent.itemAt(tabsContent.index).count + (tabsContent.itemAt(tabsContent.index).count + 1) % 3) / 3 : width / 4 * 1.3 - * (currentCount + (currentCount + 2) % 4) / 4 + * (tabsContent.itemAt(tabsContent.index).count + (tabsContent.itemAt(tabsContent.index).count + 2) % 4) / 4 Repeater { id: tabsContent -- cgit v1.2.3