@@ -190,7 +190,7 @@ class HeaderBlocks extends React.Component {
190
190
< TouchableDebounce
191
191
onPress = { ( ) => this . accountStaking ( currencyCode ) }
192
192
hitSlop = { HIT_SLOP }
193
- disabled = { withoutDescription || ! canBeStaked }
193
+ disabled = { ! canBeStaked }
194
194
>
195
195
{ diffAvailable &&
196
196
< Text style = { [ styles . availableText , { color : colors . common . text3 , marginBottom : GRID_SIZE / 3 } ] } >
@@ -201,6 +201,11 @@ class HeaderBlocks extends React.Component {
201
201
{ `${ strings ( balanceStakedTitle ) } : ${ finalIsBalanceVisible ? balanceStakedPretty + ' ' + currencySymbol : ' ****' } ` }
202
202
</ Text >
203
203
}
204
+ { ! diffAvailable && withoutDescription ?
205
+ < Text style = { styles . availableText } >
206
+ { strings ( 'account.staking' ) }
207
+ </ Text >
208
+ : null }
204
209
</ TouchableDebounce >
205
210
{
206
211
canBeStaked &&
@@ -411,16 +416,21 @@ class HeaderBlocks extends React.Component {
411
416
< View style = { styles . stakingValue } >
412
417
< Text style = { { ...styles . currencyName , color : colors . common . text1 } } > { currencySymbol } </ Text >
413
418
{ availableStaking &&
414
- < PercentView
415
- value = { this . props . stakingCoins [ currencyCode ] }
416
- staking
417
- />
419
+ < TouchableDebounce
420
+ hitSlop = { { top : 15 , right : 15 , bottom : 7 , left : 10 } }
421
+ onPress = { ( ) => this . accountStaking ( currencyCode ) }
422
+ >
423
+ < PercentView
424
+ value = { this . props . stakingCoins [ currencyCode ] }
425
+ staking
426
+ />
427
+ </ TouchableDebounce >
418
428
}
419
429
</ View >
420
430
< TouchableDebounce
421
431
style = { styles . topContent__middle }
422
432
onPress = { ( ) => this . handleBackDropModal ( shownAddress , forceLink , currencyCode , currencyName ) }
423
- hitSlop = { HIT_SLOP }
433
+ hitSlop = { { top : 6 , right : 15 , bottom : 15 , left : 15 } }
424
434
onLongPress = { ( ) => this . handleBtcAddressCopy ( shownAddress ) }
425
435
delayLongPress = { 500 }
426
436
>
0 commit comments