start of something new
This commit is contained in:
parent
ddb78fd536
commit
dc56578f8e
|
@ -4,3 +4,4 @@ nim_status_client
|
||||||
nim_libstatus
|
nim_libstatus
|
||||||
data/
|
data/
|
||||||
noBackup/
|
noBackup/
|
||||||
|
.idea
|
||||||
|
|
Before Width: | Height: | Size: 630 B After Width: | Height: | Size: 630 B |
Before Width: | Height: | Size: 621 B After Width: | Height: | Size: 621 B |
Before Width: | Height: | Size: 393 B After Width: | Height: | Size: 393 B |
23
main.qml
23
main.qml
|
@ -21,6 +21,9 @@ ApplicationWindow {
|
||||||
id: tabBar
|
id: tabBar
|
||||||
width: 50
|
width: 50
|
||||||
height: width *2 + spacing
|
height: width *2 + spacing
|
||||||
|
topPadding: 57
|
||||||
|
rightPadding: 19
|
||||||
|
leftPadding: 19
|
||||||
transformOrigin: Item.Top
|
transformOrigin: Item.Top
|
||||||
Layout.alignment: Qt.AlignLeft | Qt.AlignTop
|
Layout.alignment: Qt.AlignLeft | Qt.AlignTop
|
||||||
Layout.fillHeight: true
|
Layout.fillHeight: true
|
||||||
|
@ -28,9 +31,9 @@ ApplicationWindow {
|
||||||
anchors.topMargin: 5
|
anchors.topMargin: 5
|
||||||
spacing: 5
|
spacing: 5
|
||||||
Layout.fillWidth: true
|
Layout.fillWidth: true
|
||||||
Layout.minimumWidth: 50
|
Layout.minimumWidth: 85
|
||||||
Layout.preferredWidth: 50
|
Layout.preferredWidth: 85
|
||||||
Layout.maximumWidth: 50
|
Layout.maximumWidth: 85
|
||||||
Layout.minimumHeight: 0
|
Layout.minimumHeight: 0
|
||||||
|
|
||||||
TabButton {
|
TabButton {
|
||||||
|
@ -45,7 +48,7 @@ ApplicationWindow {
|
||||||
id: image
|
id: image
|
||||||
anchors.fill: parent
|
anchors.fill: parent
|
||||||
fillMode: Image.PreserveAspectFit
|
fillMode: Image.PreserveAspectFit
|
||||||
source: "message.png"
|
source: "img/message.png"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -54,15 +57,15 @@ ApplicationWindow {
|
||||||
width: 50
|
width: 50
|
||||||
height: 50
|
height: 50
|
||||||
text: ""
|
text: ""
|
||||||
|
anchors.topMargin: 80
|
||||||
anchors.horizontalCenter: parent.horizontalCenter
|
anchors.horizontalCenter: parent.horizontalCenter
|
||||||
anchors.top: firstBtn.bottom
|
anchors.top: firstBtn.top
|
||||||
anchors.topMargin: parent.spacing
|
|
||||||
|
|
||||||
Image {
|
Image {
|
||||||
id: image1
|
id: image1
|
||||||
anchors.fill: parent
|
anchors.fill: parent
|
||||||
fillMode: Image.PreserveAspectFit
|
fillMode: Image.PreserveAspectFit
|
||||||
source: "wallet.png"
|
source: "img/wallet.png"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -71,15 +74,15 @@ ApplicationWindow {
|
||||||
width: 50
|
width: 50
|
||||||
height: 50
|
height: 50
|
||||||
text: ""
|
text: ""
|
||||||
anchors.topMargin: 0
|
anchors.topMargin: 80
|
||||||
anchors.horizontalCenter: parent.horizontalCenter
|
anchors.horizontalCenter: parent.horizontalCenter
|
||||||
anchors.top: secondBtn.bottom
|
anchors.top: secondBtn.top
|
||||||
|
|
||||||
Image {
|
Image {
|
||||||
id: image2
|
id: image2
|
||||||
anchors.fill: parent
|
anchors.fill: parent
|
||||||
fillMode: Image.PreserveAspectFit
|
fillMode: Image.PreserveAspectFit
|
||||||
source: "profile.png"
|
source: "img/profile.png"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue