mirror of
https://github.com/BlueWallet/BlueWallet.git
synced 2024-11-19 18:00:17 +01:00
FIX: status bar disappears #311
This commit is contained in:
parent
1f1d969bd5
commit
e1ce8f8d35
@ -4,6 +4,7 @@ import {
|
||||
ActivityIndicator,
|
||||
View,
|
||||
TextInput,
|
||||
StatusBar,
|
||||
TouchableOpacity,
|
||||
KeyboardAvoidingView,
|
||||
Keyboard,
|
||||
@ -133,6 +134,7 @@ export default class SendDetails extends Component {
|
||||
};
|
||||
|
||||
async componentDidMount() {
|
||||
StatusBar.setBarStyle('dark-content');
|
||||
this.keyboardDidShowListener = Keyboard.addListener('keyboardDidShow', this._keyboardDidShow);
|
||||
this.keyboardDidHideListener = Keyboard.addListener('keyboardDidHide', this._keyboardDidHide);
|
||||
try {
|
||||
|
@ -302,6 +302,7 @@ export default class WalletTransactions extends Component {
|
||||
this.refreshFunction();
|
||||
}}
|
||||
onWillBlur={() => this.onWillBlur()}
|
||||
onDidFocus={() => StatusBar.setBarStyle('light-content')}
|
||||
/>
|
||||
{this.renderWalletHeader()}
|
||||
<View style={{ flex: 1, backgroundColor: '#FFFFFF' }}>
|
||||
|
Loading…
Reference in New Issue
Block a user