mirror of
https://github.com/BlueWallet/BlueWallet.git
synced 2025-02-22 15:04:50 +01:00
Update details.js
This commit is contained in:
parent
b56d2b1d18
commit
c16f9a871e
1 changed files with 2 additions and 1 deletions
|
@ -1012,11 +1012,12 @@ export default class SendDetails extends Component {
|
|||
};
|
||||
|
||||
render() {
|
||||
const opacity = this.state.isLoading ? 0.5 : 1.0;
|
||||
return (
|
||||
<TouchableWithoutFeedback onPress={Keyboard.dismiss} accessible={false}>
|
||||
<View style={styles.root} pointerEvents={this.state.isLoading ? 'none' : 'auto'}>
|
||||
<View>
|
||||
<View style={{ opacity: this.state.isLoading ? 0.5 : 1.0 }}>
|
||||
<View style={{ opacity: opacity }}>
|
||||
<KeyboardAvoidingView behavior="position">
|
||||
<ScrollView
|
||||
pagingEnabled
|
||||
|
|
Loading…
Add table
Reference in a new issue