133 lines
3.6 KiB
QML
133 lines
3.6 KiB
QML
|
import QtQuick 2.3
|
||
|
import QtQuick.Controls 2.3
|
||
|
import QtQuick.Layouts 1.3
|
||
|
import "../../../imports"
|
||
|
import "../../../shared"
|
||
|
|
||
|
|
||
|
Item {
|
||
|
id: walletHeader
|
||
|
height: walletAddress.y + walletAddress.height
|
||
|
anchors.right: parent.right
|
||
|
anchors.rightMargin: 0
|
||
|
anchors.left: parent.left
|
||
|
anchors.leftMargin: 0
|
||
|
anchors.top: parent.top
|
||
|
anchors.topMargin: 0
|
||
|
Layout.fillHeight: true
|
||
|
Layout.fillWidth: true
|
||
|
|
||
|
Text {
|
||
|
id: title
|
||
|
// TODO this should be the name of the wallet
|
||
|
text: qsTr("Status account")
|
||
|
anchors.top: parent.top
|
||
|
anchors.topMargin: 56
|
||
|
anchors.left: parent.left
|
||
|
anchors.leftMargin: 24
|
||
|
font.weight: Font.Medium
|
||
|
font.pixelSize: 28
|
||
|
}
|
||
|
|
||
|
Rectangle {
|
||
|
id: separatorDot
|
||
|
width: 8
|
||
|
height: 8
|
||
|
color: Theme.blue
|
||
|
anchors.top: title.verticalCenter
|
||
|
anchors.topMargin: -3
|
||
|
anchors.left: title.right
|
||
|
anchors.leftMargin: 8
|
||
|
radius: 50
|
||
|
}
|
||
|
|
||
|
Text {
|
||
|
id: walletBalance
|
||
|
// TODO this should be the balance
|
||
|
text: qsTr("12.00 USD")
|
||
|
anchors.left: separatorDot.right
|
||
|
anchors.leftMargin: 8
|
||
|
anchors.verticalCenter: title.verticalCenter
|
||
|
font.pixelSize: 22
|
||
|
}
|
||
|
|
||
|
Text {
|
||
|
id: walletAddress
|
||
|
// TODO this should be the address and an actual Address component that can shrink and expend
|
||
|
text: qsTr("0X2Ef1...E0Ba")
|
||
|
anchors.top: title.bottom
|
||
|
anchors.topMargin: 0
|
||
|
anchors.left: title.left
|
||
|
anchors.leftMargin: 0
|
||
|
font.pixelSize: 13
|
||
|
color: Theme.darkGrey
|
||
|
}
|
||
|
|
||
|
Item {
|
||
|
property int btnMargin: 8
|
||
|
property int btnOuterMargin: 32
|
||
|
id: walletMenu
|
||
|
// TODO unhardcode this
|
||
|
width: sendBtn.width + receiveBtn.width + settingsBtn.width
|
||
|
+ walletMenu.btnOuterMargin * 2
|
||
|
anchors.top: parent.top
|
||
|
anchors.topMargin: 16
|
||
|
anchors.right: parent.right
|
||
|
anchors.rightMargin: 16
|
||
|
|
||
|
Item {
|
||
|
id: sendBtn
|
||
|
width: sendImg.width + sendText.width + walletMenu.btnMargin
|
||
|
|
||
|
Image {
|
||
|
id: sendImg
|
||
|
width: 12
|
||
|
height: 12
|
||
|
fillMode: Image.PreserveAspectFit
|
||
|
source: "../../img/diagonalArrow.svg"
|
||
|
}
|
||
|
|
||
|
Text {
|
||
|
id: sendText
|
||
|
text: "Send"
|
||
|
anchors.left: sendImg.right
|
||
|
anchors.leftMargin: walletMenu.btnMargin
|
||
|
font.pixelSize: 13
|
||
|
color: Theme.blue
|
||
|
}
|
||
|
}
|
||
|
Item {
|
||
|
id: receiveBtn
|
||
|
width: receiveImg.width + receiveText.width + walletMenu.btnMargin
|
||
|
anchors.left: sendBtn.right
|
||
|
anchors.leftMargin: walletMenu.btnOuterMargin
|
||
|
|
||
|
Image {
|
||
|
id: receiveImg
|
||
|
width: 12
|
||
|
height: 12
|
||
|
fillMode: Image.PreserveAspectFit
|
||
|
source: "../../img/diagonalArrow.svg"
|
||
|
}
|
||
|
|
||
|
Text {
|
||
|
id: receiveText
|
||
|
text: "Receive"
|
||
|
anchors.left: receiveImg.right
|
||
|
anchors.leftMargin: walletMenu.btnMargin
|
||
|
font.pixelSize: 13
|
||
|
color: Theme.blue
|
||
|
}
|
||
|
}
|
||
|
Image {
|
||
|
id: settingsBtn
|
||
|
anchors.left: receiveBtn.right
|
||
|
anchors.leftMargin: walletMenu.btnOuterMargin
|
||
|
width: 18
|
||
|
height: 18
|
||
|
fillMode: Image.PreserveAspectFit
|
||
|
source: "../../img/settings.svg"
|
||
|
}
|
||
|
}
|
||
|
}
|