@@ -48,6 +48,8 @@ PageStack {
4848
4949 spacing: 10
5050
51+ enabled: walletController .initialized
52+
5153 Item {
5254 id: titleRow
5355 Layout .fillWidth : true
@@ -59,6 +61,7 @@ PageStack {
5961 anchors .verticalCenter : parent .verticalCenter
6062 text: qsTr (" Send bitcoin" )
6163 font .pixelSize : 21
64+ color: Theme .color .neutral9
6265 bold: true
6366 }
6467 EllipsisMenuButton {
@@ -106,7 +109,6 @@ PageStack {
106109 anchors .left : parent .left
107110 anchors .verticalCenter : parent .verticalCenter
108111 horizontalAlignment: Text .AlignLeft
109- color: Theme .color .neutral9
110112 text: qsTr (" Amount" )
111113 font .pixelSize : 18
112114 }
@@ -120,7 +122,7 @@ PageStack {
120122 font .styleName : " Regular"
121123 font .pixelSize : 18
122124 color: Theme .color .neutral9
123- placeholderTextColor: Theme .color .neutral7
125+ placeholderTextColor: enabled ? Theme .color .neutral7 : Theme . color . neutral2
124126 background: Item {}
125127 placeholderText: " 0.00000000"
126128 selectByMouse: true
@@ -152,14 +154,14 @@ PageStack {
152154 anchors .verticalCenter : parent .verticalCenter
153155 text: bitcoinAmount .unitLabel
154156 font .pixelSize : 18
155- color: Theme .color .neutral7
157+ color: enabled ? Theme .color .neutral7 : Theme . color . neutral2
156158 }
157159 Icon {
158160 id: flipIcon
159161 anchors .right : parent .right
160162 anchors .verticalCenter : parent .verticalCenter
161163 source: " image://images/flip-vertical"
162- color: Theme .color .neutral8
164+ icon . color : unitLabel . enabled ? Theme .color .neutral8 : Theme . color . neutral2
163165 size: 30
164166 }
165167 }
@@ -204,7 +206,6 @@ PageStack {
204206 id: feeLabel
205207 anchors .left : parent .left
206208 anchors .top : parent .top
207- color: Theme .color .neutral9
208209 text: " Fee"
209210 font .pixelSize : 15
210211 }
@@ -213,7 +214,6 @@ PageStack {
213214 id: feeValue
214215 anchors .right : parent .right
215216 anchors .top : parent .top
216- color: Theme .color .neutral9
217217 text: qsTr (" Default (~2,000 sats)" )
218218 font .pixelSize : 15
219219 }
0 commit comments