You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
import QtQuick 2.0 |
|
|
|
Item { |
|
property bool toolbar: false |
|
|
|
Rectangle { |
|
anchors.fill: parent |
|
color: '#111144' |
|
} |
|
|
|
Image { |
|
anchors.horizontalCenter: parent.horizontalCenter |
|
anchors.verticalCenter: parent.verticalCenter |
|
source: "../../icons/electrum.png" |
|
} |
|
}
|
|
|