FluentUI/example/qml/page/T_Pivot.qml

83 lines
1.7 KiB
QML
Raw Normal View History

2023-08-24 15:50:37 +08:00
import QtQuick 2.15
import QtQuick.Controls 2.15
import QtQuick.Layouts 1.15
import QtQuick.Window 2.15
import FluentUI 1.0
2023-08-26 17:20:30 +08:00
import "../component"
2023-04-04 15:09:34 +08:00
2023-06-28 13:16:21 +08:00
FluScrollablePage{
2023-04-04 15:09:34 +08:00
2023-06-28 13:15:33 +08:00
title:"Pivot"
2023-06-28 13:13:39 +08:00
2023-06-28 13:15:33 +08:00
FluArea{
Layout.fillWidth: true
Layout.topMargin: 20
height: 400
paddings: 10
2023-04-04 15:09:34 +08:00
2023-09-12 18:45:15 +08:00
2023-06-28 13:15:33 +08:00
FluPivot{
anchors.fill: parent
currentIndex: 2
2023-09-12 18:45:15 +08:00
2023-06-28 13:15:33 +08:00
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."
}
}
}
'
}
2023-04-04 15:09:34 +08:00
}