mirror of
https://github.com/qmlnet/qmlnet.git
synced 2026-05-15 22:02:31 -06:00
14 lines
284 B
QML
14 lines
284 B
QML
import QtQuick 2.7
|
|
import QtQuick.Controls 2.0
|
|
import QtQuick.Layouts 1.0
|
|
|
|
Item {
|
|
anchors.fill: parent
|
|
property var viewModel
|
|
Image {
|
|
anchors.fill: parent
|
|
fillMode: Image.PreserveAspectFit
|
|
id: imgPhoto
|
|
source: viewModel.imageUri
|
|
}
|
|
}
|