mirror of
https://github.com/status-im/status-desktop.git
synced 2025-01-19 02:55:15 +00:00
03f8f80c56
Enabled walletconnect qml tests. Closes #14760
36 lines
747 B
QML
36 lines
747 B
QML
import QtQuick 2.15
|
|
import QtQuick.Layouts 1.15
|
|
|
|
import StatusQ.Core 0.1
|
|
import StatusQ.Core.Theme 0.1
|
|
|
|
ColumnLayout {
|
|
id: root
|
|
|
|
property alias maxFeesText: maxFeesDisplay.text
|
|
property alias feesTextColor: maxFeesDisplay.color
|
|
|
|
StatusBaseText {
|
|
text: qsTr("Max fees:")
|
|
|
|
font.pixelSize: 12
|
|
color: Theme.palette.directColor1
|
|
}
|
|
StatusBaseText {
|
|
id: maxFeesDisplay
|
|
text: root.maxFeesText
|
|
|
|
visible: !!text
|
|
|
|
font.pixelSize: 16
|
|
}
|
|
StatusBaseText {
|
|
text: qsTr("No fees")
|
|
|
|
visible: !maxFeesDisplay.visible
|
|
|
|
font.pixelSize: maxFeesDisplay.font.pixelSize
|
|
font.weight: maxFeesDisplay.font.weight
|
|
}
|
|
}
|