mirror of
https://github.com/status-im/status-desktop.git
synced 2025-01-09 22:06:25 +00:00
79cf818202
Add receive modal in the wallet to show a QR code and address selector Improve Input component to be able to show a Copy button that copies to clipboard Improve AccountSelector modal to be able to not show details and fix eliding
47 lines
1.3 KiB
QML
47 lines
1.3 KiB
QML
import QtQuick 2.13
|
|
import QtQuick.Controls 2.13
|
|
import QtQml 2.14
|
|
import "../imports"
|
|
|
|
Button {
|
|
property string label: "My button"
|
|
property color btnColor: Style.current.secondaryBackground
|
|
property color btnBorderColor: "transparent"
|
|
property int btnBorderWidth: 0
|
|
property color textColor: Style.current.blue
|
|
property int textSize: 15
|
|
property bool disabled: false
|
|
|
|
id: btnStyled
|
|
width: txtBtnLabel.width + 2 * Style.current.padding
|
|
height: 44
|
|
enabled: !disabled
|
|
|
|
background: Rectangle {
|
|
color: disabled ? Style.current.grey :
|
|
hovered ? Qt.darker(btnStyled.btnColor, 1.1) : btnStyled.btnColor
|
|
radius: Style.current.radius
|
|
anchors.fill: parent
|
|
border.color: btnBorderColor
|
|
border.width: btnBorderWidth
|
|
}
|
|
|
|
StyledText {
|
|
id: txtBtnLabel
|
|
color: btnStyled.disabled ? Style.current.darkGrey : btnStyled.textColor
|
|
font.pixelSize: btnStyled.textSize
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
anchors.horizontalCenter: parent.horizontalCenter
|
|
text: btnStyled.label
|
|
font.weight: Font.Medium
|
|
}
|
|
|
|
MouseArea {
|
|
cursorShape: Qt.PointingHandCursor
|
|
anchors.fill: parent
|
|
onClicked: {
|
|
parent.onClicked()
|
|
}
|
|
}
|
|
}
|