Recherche page d'accueil
This commit is contained in:
parent
52e69106b8
commit
1b0184cfec
|
@ -2125,7 +2125,14 @@ class Home extends BaseScreen {
|
||||||
>
|
>
|
||||||
<View>
|
<View>
|
||||||
<TextInput
|
<TextInput
|
||||||
style={{marginTop: 10, height: 46, borderRadius: 5, borderWidth: 1, borderColor: "#ccc"}}
|
style={{
|
||||||
|
marginTop: 10,
|
||||||
|
width: responsiveWidth(90),
|
||||||
|
height: 46,
|
||||||
|
borderRadius: 5,
|
||||||
|
borderWidth: 1,
|
||||||
|
borderColor: "#ccc"
|
||||||
|
}}
|
||||||
placeholder={this.state.isPhoneAssureSearch ? I18n.t('PHONE') : I18n.t('NAME')}
|
placeholder={this.state.isPhoneAssureSearch ? I18n.t('PHONE') : I18n.t('NAME')}
|
||||||
value={this.state.userName}
|
value={this.state.userName}
|
||||||
keyboardType={this.state.isPhoneAssureSearch ? 'numeric' : 'default'}
|
keyboardType={this.state.isPhoneAssureSearch ? 'numeric' : 'default'}
|
||||||
|
@ -2145,12 +2152,12 @@ class Home extends BaseScreen {
|
||||||
flexDirection: 'row',
|
flexDirection: 'row',
|
||||||
position: 'absolute',
|
position: 'absolute',
|
||||||
top: 22,
|
top: 22,
|
||||||
right: 50,
|
right: 70,
|
||||||
justifyContent: 'space-between',
|
justifyContent: 'space-between',
|
||||||
width: 50
|
width: 50
|
||||||
}}>
|
}}>
|
||||||
<FontAwesomeIcon
|
<FontAwesomeIcon
|
||||||
style={{paddingRight: 5}}
|
style={{paddingRight: 20}}
|
||||||
name='phone'
|
name='phone'
|
||||||
size={20}
|
size={20}
|
||||||
color={Color.primaryColor}
|
color={Color.primaryColor}
|
||||||
|
@ -2162,7 +2169,7 @@ class Home extends BaseScreen {
|
||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
<FontAwesomeIcon
|
<FontAwesomeIcon
|
||||||
style={{paddingRight: 5}}
|
style={{paddingRight: 20}}
|
||||||
name='user'
|
name='user'
|
||||||
size={20}
|
size={20}
|
||||||
color={Color.primaryColor}
|
color={Color.primaryColor}
|
||||||
|
@ -2174,7 +2181,7 @@ class Home extends BaseScreen {
|
||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
<FontAwesomeIcon
|
<FontAwesomeIcon
|
||||||
style={{paddingRight: 5}}
|
style={{paddingRight: 20}}
|
||||||
name="qrcode"
|
name="qrcode"
|
||||||
size={20}
|
size={20}
|
||||||
color={Color.primaryColor}
|
color={Color.primaryColor}
|
||||||
|
|
Loading…
Reference in New Issue