FIX: Wallet name input character entry

This commit is contained in:
marcosrdz 2020-03-10 10:41:06 -04:00 committed by Overtorment
parent ce185f5e3a
commit e0a1d27ef5

View file

@ -99,6 +99,11 @@ export default class WalletsAdd extends Component {
<ScrollView>
<BlueFormLabel>{loc.wallets.add.wallet_name}</BlueFormLabel>
<KeyboardAvoidingView
enabled
behavior={Platform.OS === 'ios' ? 'position' : null}
keyboardVerticalOffset={20}
>
<View
style={{
flexDirection: 'row',
borderColor: '#d2d2d2',
@ -113,9 +118,6 @@ export default class WalletsAdd extends Component {
marginVertical: 16,
borderRadius: 4,
}}
enabled
behavior={Platform.OS === 'ios' ? 'position' : null}
keyboardVerticalOffset={20}
>
<TextInput
value={this.state.label}
@ -128,6 +130,7 @@ export default class WalletsAdd extends Component {
editable={!this.state.isLoading}
underlineColorAndroid="transparent"
/>
</View>
</KeyboardAvoidingView>
<BlueFormLabel>{loc.wallets.add.wallet_type}</BlueFormLabel>