From cdba8b79216cc6e9cca361763cf8eecf3701dd02 Mon Sep 17 00:00:00 2001 From: zhuzichu Date: Wed, 28 Jun 2023 13:15:33 +0800 Subject: [PATCH] update --- example/qml/page/T_Pivot.qml | 141 +++++++++++++++++------------------ 1 file changed, 68 insertions(+), 73 deletions(-) diff --git a/example/qml/page/T_Pivot.qml b/example/qml/page/T_Pivot.qml index 689410ee..8e773432 100644 --- a/example/qml/page/T_Pivot.qml +++ b/example/qml/page/T_Pivot.qml @@ -7,78 +7,73 @@ import "qrc:///example/qml/component" FluPage{ - Component.onDestruction: { - console.debug("------------------------->") + title:"Pivot" + + FluArea{ + Layout.fillWidth: true + Layout.topMargin: 20 + height: 400 + paddings: 10 + + FluPivot{ + anchors.fill: parent + currentIndex: 2 + FluPivotItem{ + title:"All" + contentItem:FluText{ + text:"All emails go here." + } + } + FluPivotItem{ + title:"Unread" + contentItem:FluText{ + text:"Unread emails go here." + } + } + FluPivotItem{ + title:"Flagged" + contentItem:FluText{ + text:"Flagged emails go here." + } + } + FluPivotItem{ + title:"Urgent" + contentItem:FluText{ + text:"Urgent emails go here." + } + } + } + } + CodeExpander{ + Layout.fillWidth: true + Layout.topMargin: -1 + code:'FluPivot{ + anchors.fill: parent + FluPivotItem:{ + text:"All" + contentItem: FluText{ + text:"All emails go here." + } + } + FluPivotItem:{ + text:"Unread" + contentItem: FluText{ + text:"Unread emails go here." + } + } + FluPivotItem:{ + text:"Flagged" + contentItem: FluText{ + text:"Flagged emails go here." + } + } + FluPivotItem:{ + text:"Urgent" + contentItem: FluText{ + text:"Urgent emails go here." + } + } +} +' } - -// title:"Pivot" - -// FluArea{ -// Layout.fillWidth: true -// Layout.topMargin: 20 -// height: 400 -// paddings: 10 - -// FluPivot{ -// anchors.fill: parent -// currentIndex: 2 -// FluPivotItem{ -// title:"All" -// contentItem:FluText{ -// text:"All emails go here." -// } -// } -// FluPivotItem{ -// title:"Unread" -// contentItem:FluText{ -// text:"Unread emails go here." -// } -// } -// FluPivotItem{ -// title:"Flagged" -// contentItem:FluText{ -// text:"Flagged emails go here." -// } -// } -// FluPivotItem{ -// title:"Urgent" -// contentItem:FluText{ -// text:"Urgent emails go here." -// } -// } -// } -// } -// CodeExpander{ -// Layout.fillWidth: true -// Layout.topMargin: -1 -// code:'FluPivot{ -// anchors.fill: parent -// FluPivotItem:{ -// text:"All" -// contentItem: FluText{ -// text:"All emails go here." -// } -// } -// FluPivotItem:{ -// text:"Unread" -// contentItem: FluText{ -// text:"Unread emails go here." -// } -// } -// FluPivotItem:{ -// text:"Flagged" -// contentItem: FluText{ -// text:"Flagged emails go here." -// } -// } -// FluPivotItem:{ -// text:"Urgent" -// contentItem: FluText{ -// text:"Urgent emails go here." -// } -// } -//} -//' -// } - }