mirror of
https://github.com/BlueWallet/BlueWallet.git
synced 2025-03-26 08:55:56 +01:00
FIX: text input Colors
This commit is contained in:
parent
b647851562
commit
b159674411
3 changed files with 6 additions and 1 deletions
|
@ -2066,8 +2066,9 @@ export class BlueAddressInput extends Component {
|
|||
}}
|
||||
placeholder={this.props.placeholder}
|
||||
numberOfLines={1}
|
||||
placeholderTextColor="#81868e"
|
||||
value={this.props.address}
|
||||
style={{ flex: 1, marginHorizontal: 8, minHeight: 33 }}
|
||||
style={{ flex: 1, marginHorizontal: 8, minHeight: 33, color: '#81868e' }}
|
||||
editable={!this.props.isLoading}
|
||||
onSubmitEditing={Keyboard.dismiss}
|
||||
{...this.props}
|
||||
|
|
|
@ -183,6 +183,7 @@ const styles = StyleSheet.create({
|
|||
flex: 1,
|
||||
marginHorizontal: 8,
|
||||
minHeight: 33,
|
||||
color: '#81868e',
|
||||
},
|
||||
fee: {
|
||||
flexDirection: 'row',
|
||||
|
@ -1036,6 +1037,7 @@ export default class SendDetails extends Component {
|
|||
<TextInput
|
||||
onChangeText={text => this.setState({ memo: text })}
|
||||
placeholder={loc.send.details.note_placeholder}
|
||||
placeholderTextColor="#81868e"
|
||||
value={this.state.memo}
|
||||
numberOfLines={1}
|
||||
style={styles.memoText}
|
||||
|
|
|
@ -83,6 +83,7 @@ const styles = StyleSheet.create({
|
|||
flex: 1,
|
||||
marginHorizontal: 8,
|
||||
minHeight: 33,
|
||||
color: '#81868e',
|
||||
},
|
||||
hardware: {
|
||||
flexDirection: 'row',
|
||||
|
@ -252,6 +253,7 @@ export default class WalletDetails extends Component {
|
|||
}
|
||||
}}
|
||||
numberOfLines={1}
|
||||
placeholderTextColor="#81868e"
|
||||
style={styles.inputText}
|
||||
editable={!this.state.isLoading}
|
||||
underlineColorAndroid="transparent"
|
||||
|
|
Loading…
Add table
Reference in a new issue