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 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
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|