@@ -48,6 +48,8 @@ PageStack {
48
48
49
49
spacing: 10
50
50
51
+ enabled: walletController .initialized
52
+
51
53
Item {
52
54
id: titleRow
53
55
Layout .fillWidth : true
@@ -59,6 +61,7 @@ PageStack {
59
61
anchors .verticalCenter : parent .verticalCenter
60
62
text: qsTr (" Send bitcoin" )
61
63
font .pixelSize : 21
64
+ color: Theme .color .neutral9
62
65
bold: true
63
66
}
64
67
EllipsisMenuButton {
@@ -106,7 +109,6 @@ PageStack {
106
109
anchors .left : parent .left
107
110
anchors .verticalCenter : parent .verticalCenter
108
111
horizontalAlignment: Text .AlignLeft
109
- color: Theme .color .neutral9
110
112
text: qsTr (" Amount" )
111
113
font .pixelSize : 18
112
114
}
@@ -120,7 +122,7 @@ PageStack {
120
122
font .styleName : " Regular"
121
123
font .pixelSize : 18
122
124
color: Theme .color .neutral9
123
- placeholderTextColor: Theme .color .neutral7
125
+ placeholderTextColor: enabled ? Theme .color .neutral7 : Theme . color . neutral2
124
126
background: Item {}
125
127
placeholderText: " 0.00000000"
126
128
selectByMouse: true
@@ -152,14 +154,14 @@ PageStack {
152
154
anchors .verticalCenter : parent .verticalCenter
153
155
text: bitcoinAmount .unitLabel
154
156
font .pixelSize : 18
155
- color: Theme .color .neutral7
157
+ color: enabled ? Theme .color .neutral7 : Theme . color . neutral2
156
158
}
157
159
Icon {
158
160
id: flipIcon
159
161
anchors .right : parent .right
160
162
anchors .verticalCenter : parent .verticalCenter
161
163
source: " image://images/flip-vertical"
162
- color: Theme .color .neutral8
164
+ icon . color : unitLabel . enabled ? Theme .color .neutral8 : Theme . color . neutral2
163
165
size: 30
164
166
}
165
167
}
@@ -204,7 +206,6 @@ PageStack {
204
206
id: feeLabel
205
207
anchors .left : parent .left
206
208
anchors .top : parent .top
207
- color: Theme .color .neutral9
208
209
text: " Fee"
209
210
font .pixelSize : 15
210
211
}
@@ -213,7 +214,6 @@ PageStack {
213
214
id: feeValue
214
215
anchors .right : parent .right
215
216
anchors .top : parent .top
216
- color: Theme .color .neutral9
217
217
text: qsTr (" Default (~2,000 sats)" )
218
218
font .pixelSize : 15
219
219
}
0 commit comments