FluentUI/example/qml-Qt6/page/T_Pivot.qml

83 lines
1.8 KiB
QML
Raw Normal View History

2023-08-24 15:50:37 +08:00
import QtQuick
import QtQuick.Controls
import QtQuick.Layouts
import QtQuick.Window
import FluentUI
2024-01-25 17:26:50 +08:00
import "../component"
2023-08-24 15:50:37 +08:00
FluScrollablePage{
2024-03-09 15:35:48 +08:00
title: qsTr("Pivot")
2023-08-24 15:50:37 +08:00
FluArea{
Layout.fillWidth: true
Layout.topMargin: 20
height: 400
paddings: 10
2024-03-09 15:35:48 +08:00
2023-08-24 15:50:37 +08:00
FluPivot{
anchors.fill: parent
currentIndex: 2
2024-03-09 15:35:48 +08:00
2023-08-24 15:50:37 +08:00
FluPivotItem{
2024-03-09 15:35:48 +08:00
title: qsTr("All")
2023-08-24 15:50:37 +08:00
contentItem:FluText{
2024-03-09 15:35:48 +08:00
text: qsTr("All emails go here.")
2023-08-24 15:50:37 +08:00
}
}
FluPivotItem{
2024-03-09 15:35:48 +08:00
title: qsTr("Unread")
contentItem: FluText{
text: qsTr("Unread emails go here.")
2023-08-24 15:50:37 +08:00
}
}
FluPivotItem{
2024-03-09 15:35:48 +08:00
title: qsTr("Flagged")
contentItem: FluText{
text: qsTr("Flagged emails go here.")
2023-08-24 15:50:37 +08:00
}
}
FluPivotItem{
2024-03-09 15:35:48 +08:00
title: qsTr("Urgent")
contentItem: FluText{
text: qsTr("Urgent emails go here.")
2023-08-24 15:50:37 +08:00
}
}
}
}
CodeExpander{
Layout.fillWidth: true
Layout.topMargin: -1
code:'FluPivot{
anchors.fill: parent
FluPivotItem:{
2024-03-09 15:35:48 +08:00
text: qsTr("All")
2023-08-24 15:50:37 +08:00
contentItem: FluText{
2024-03-09 15:35:48 +08:00
text: qsTr("All emails go here.")
2023-08-24 15:50:37 +08:00
}
}
FluPivotItem:{
2024-03-09 15:35:48 +08:00
text: qsTr("Unread")
2023-08-24 15:50:37 +08:00
contentItem: FluText{
2024-03-09 15:35:48 +08:00
text: qsTr("Unread emails go here.")
2023-08-24 15:50:37 +08:00
}
}
FluPivotItem:{
2024-03-09 15:35:48 +08:00
text: qsTr("Flagged")
2023-08-24 15:50:37 +08:00
contentItem: FluText{
2024-03-09 15:35:48 +08:00
text: qsTr("Flagged emails go here.")
2023-08-24 15:50:37 +08:00
}
}
FluPivotItem:{
2024-03-09 15:35:48 +08:00
text: qsTr("Urgent")
2023-08-24 15:50:37 +08:00
contentItem: FluText{
2024-03-09 15:35:48 +08:00
text: qsTr("Urgent emails go here.")
2023-08-24 15:50:37 +08:00
}
}
}
'
}
}