mirror of
https://github.com/Qsgs-Fans/FreeKill.git
synced 2024-11-16 19:58:13 +08:00
d2315c7533
* create Photo * Room layout, img, debug
22 lines
323 B
QML
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 }
|
|
}
|