c866ac87a9
As suggested in the Qt Quick coding style
15 lines
294 B
QML
15 lines
294 B
QML
import QtQuick 2.7
|
|
import QtQuick.Controls 2.0
|
|
import QtQuick.Layouts 1.4
|
|
|
|
Avatar {
|
|
Image {
|
|
id: status
|
|
anchors.right: parent.right
|
|
anchors.bottom: parent.bottom
|
|
source: "../../icons/status.svg"
|
|
asynchronous: true
|
|
sourceSize.width: 12
|
|
}
|
|
}
|