We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5b00612 commit 37cfe4eCopy full SHA for 37cfe4e
src/qml/pages/stub.qml
@@ -17,17 +17,19 @@ ApplicationWindow {
17
18
Component.onCompleted: nodeModel.startNodeInitializionThread();
19
20
- Image {
21
- id: appLogo
22
- anchors.horizontalCenter: parent.horizontalCenter
23
- source: "image://images/app"
24
- sourceSize.width: 128
25
- sourceSize.height: 128
26
- }
27
-
28
- BlockCounter {
29
- id: blockCounter
+ ColumnLayout {
30
anchors.centerIn: parent
31
- blockHeight: nodeModel.blockTipHeight
+ spacing: 15
+ width: 400
+ Image {
+ Layout.alignment: Qt.AlignCenter
+ source: "image://images/app"
+ sourceSize.width: 64
+ sourceSize.height: 64
+ }
+ BlockCounter {
32
+ blockHeight: nodeModel.blockTipHeight
33
34
}
35
0 commit comments