This commit is contained in:
zhuzichu 2023-06-28 13:15:33 +08:00
parent 192c65a510
commit cdba8b7921

View File

@ -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."
// }
// }
//}
//'
// }
}