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() {
|
render() {
|
||||||
|
const opacity = this.state.isLoading ? 0.5 : 1.0;
|
||||||
return (
|
return (
|
||||||
<TouchableWithoutFeedback onPress={Keyboard.dismiss} accessible={false}>
|
<TouchableWithoutFeedback onPress={Keyboard.dismiss} accessible={false}>
|
||||||
<View style={styles.root} pointerEvents={this.state.isLoading ? 'none' : 'auto'}>
|
<View style={styles.root} pointerEvents={this.state.isLoading ? 'none' : 'auto'}>
|
||||||
<View>
|
<View>
|
||||||
<View style={{ opacity: this.state.isLoading ? 0.5 : 1.0 }}>
|
<View style={{ opacity: opacity }}>
|
||||||
<KeyboardAvoidingView behavior="position">
|
<KeyboardAvoidingView behavior="position">
|
||||||
<ScrollView
|
<ScrollView
|
||||||
pagingEnabled
|
pagingEnabled
|
||||||
|
|
Loading…
Add table
Reference in a new issue