FreeKill/qml/Pages/RoomElement/Dashboard.qml
Notify-ctrl d2315c7533 Basic roomscene (#1)
* create Photo

* Room layout, img, debug
2022-03-27 15:12:00 +08:00

22 lines
323 B
QML

import QtQuick 2.15
import QtQuick.Layouts 1.1
import QtGraphicalEffects 1.0
RowLayout {
id: root
property alias self: selfPhoto
HandcardArea {
id: handcardAreaItem
Layout.fillWidth: true
Layout.fillHeight: true
}
Photo {
id: selfPhoto
}
Item { width: 5 }
}