FluentUI/example/SettingPage.qml

22 lines
262 B
QML
Raw Normal View History

2023-02-26 23:47:07 +08:00
import QtQuick 2.15
import FluentUI 1.0
2023-02-27 18:46:39 +08:00
FluWindow {
2023-02-26 23:47:07 +08:00
width: 500
height: 500
2023-02-27 23:04:52 +08:00
title:"设置"
2023-02-26 23:47:07 +08:00
2023-02-27 18:46:39 +08:00
FluAppBar{
id:appbar
}
2023-02-26 23:47:07 +08:00
FluText{
text:"Display"
fontStyle: FluText.Display
anchors.centerIn: parent
}
}