mirror of
https://github.com/BlueWallet/BlueWallet.git
synced 2025-03-03 20:07:11 +01:00
FIX: Wallet name input character entry
This commit is contained in:
parent
ce185f5e3a
commit
e0a1d27ef5
1 changed files with 17 additions and 14 deletions
|
@ -99,24 +99,26 @@ export default class WalletsAdd extends Component {
|
||||||
<ScrollView>
|
<ScrollView>
|
||||||
<BlueFormLabel>{loc.wallets.add.wallet_name}</BlueFormLabel>
|
<BlueFormLabel>{loc.wallets.add.wallet_name}</BlueFormLabel>
|
||||||
<KeyboardAvoidingView
|
<KeyboardAvoidingView
|
||||||
style={{
|
|
||||||
flexDirection: 'row',
|
|
||||||
borderColor: '#d2d2d2',
|
|
||||||
borderBottomColor: '#d2d2d2',
|
|
||||||
borderWidth: 1.0,
|
|
||||||
borderBottomWidth: 0.5,
|
|
||||||
backgroundColor: '#f5f5f5',
|
|
||||||
minHeight: 44,
|
|
||||||
height: 44,
|
|
||||||
marginHorizontal: 20,
|
|
||||||
alignItems: 'center',
|
|
||||||
marginVertical: 16,
|
|
||||||
borderRadius: 4,
|
|
||||||
}}
|
|
||||||
enabled
|
enabled
|
||||||
behavior={Platform.OS === 'ios' ? 'position' : null}
|
behavior={Platform.OS === 'ios' ? 'position' : null}
|
||||||
keyboardVerticalOffset={20}
|
keyboardVerticalOffset={20}
|
||||||
>
|
>
|
||||||
|
<View
|
||||||
|
style={{
|
||||||
|
flexDirection: 'row',
|
||||||
|
borderColor: '#d2d2d2',
|
||||||
|
borderBottomColor: '#d2d2d2',
|
||||||
|
borderWidth: 1.0,
|
||||||
|
borderBottomWidth: 0.5,
|
||||||
|
backgroundColor: '#f5f5f5',
|
||||||
|
minHeight: 44,
|
||||||
|
height: 44,
|
||||||
|
marginHorizontal: 20,
|
||||||
|
alignItems: 'center',
|
||||||
|
marginVertical: 16,
|
||||||
|
borderRadius: 4,
|
||||||
|
}}
|
||||||
|
>
|
||||||
<TextInput
|
<TextInput
|
||||||
value={this.state.label}
|
value={this.state.label}
|
||||||
placeholderTextColor="#81868e"
|
placeholderTextColor="#81868e"
|
||||||
|
@ -128,6 +130,7 @@ export default class WalletsAdd extends Component {
|
||||||
editable={!this.state.isLoading}
|
editable={!this.state.isLoading}
|
||||||
underlineColorAndroid="transparent"
|
underlineColorAndroid="transparent"
|
||||||
/>
|
/>
|
||||||
|
</View>
|
||||||
</KeyboardAvoidingView>
|
</KeyboardAvoidingView>
|
||||||
<BlueFormLabel>{loc.wallets.add.wallet_type}</BlueFormLabel>
|
<BlueFormLabel>{loc.wallets.add.wallet_type}</BlueFormLabel>
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue