15 lines
215 B
QML
15 lines
215 B
QML
|
import QtQuick
|
||
|
import Fluent as Fluent
|
||
|
|
||
|
Window {
|
||
|
width: 640
|
||
|
height: 480
|
||
|
visible: true
|
||
|
title: qsTr("FluentWindow")
|
||
|
|
||
|
Fluent.Rectangle {
|
||
|
width: 100
|
||
|
height: 100
|
||
|
}
|
||
|
}
|