FluentUI/example/qml/page/T_Pivot.qml
2023-06-28 13:13:39 +08:00

85 lines
1.9 KiB
QML

import QtQuick
import QtQuick.Controls
import QtQuick.Layouts
import QtQuick.Window
import FluentUI
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."
// }
// }
//}
//'
// }
}