mirror of
https://github.com/status-im/status-desktop.git
synced 2025-01-10 14:26:34 +00:00
7973679926
Removed send/receive/settings buttons from the header. Wallet's footer and buttons required by the new design are added.
55 lines
1.1 KiB
QML
55 lines
1.1 KiB
QML
import QtQuick 2.14
|
|
import QtQuick.Controls 2.14
|
|
import "../../../imports"
|
|
import "./components"
|
|
|
|
Item {
|
|
id: walletFooterRoot
|
|
height: 50
|
|
width: parent.width
|
|
|
|
Rectangle {
|
|
id: separatorLine
|
|
anchors.top: parent.top
|
|
anchors.left: parent.left
|
|
anchors.right: parent.right
|
|
height: 1
|
|
color: Style.current.separator
|
|
}
|
|
|
|
Row {
|
|
|
|
anchors.centerIn: parent
|
|
spacing: 50
|
|
|
|
WalletButton {
|
|
id: swapBtn
|
|
imageSource: "../../img/swap-icon.svg"
|
|
text: qsTr("Swap")
|
|
onClicked: function (){
|
|
}
|
|
}
|
|
|
|
WalletButton {
|
|
id: sendBtn
|
|
imageSource: "../../img/send.svg"
|
|
text: qsTr("Send")
|
|
onClicked: function (){
|
|
}
|
|
}
|
|
|
|
WalletButton {
|
|
id: buySellBtn
|
|
imageSource: "../../img/crypto-icon.svg"
|
|
text: qsTr("Buy / Sell")
|
|
onClicked: function (){
|
|
cryptoServicesModal.open()
|
|
}
|
|
}
|
|
}
|
|
|
|
CryptoServicesModal {
|
|
id: cryptoServicesModal
|
|
}
|
|
}
|