-
Notifications
You must be signed in to change notification settings - Fork 451
/
Copy pathapp.js
67 lines (57 loc) · 1.35 KB
/
app.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
import React, { Component } from 'react';
import { StyleSheet, View } from 'react-native';
import PhoneInput from 'react-native-phone-input';
import CountryPicker from 'react-native-country-picker-modal';
class App extends Component {
constructor() {
super();
this.onPressFlag = this.onPressFlag.bind(this);
this.selectCountry = this.selectCountry.bind(this);
this.state = {
cca2: 'US',
};
}
componentDidMount() {
this.setState({
pickerData: this.phone.getPickerData(),
});
}
onPressFlag() {
this.countryPicker.openModal();
}
selectCountry(country) {
this.phone.selectCountry(country.cca2.toLowerCase());
this.setState({ cca2: country.cca2 });
}
render() {
return (
<View style={styles.container}>
<PhoneInput
ref={(ref) => {
this.phone = ref;
}}
onPressFlag={this.onPressFlag}
/>
<CountryPicker
ref={(ref) => {
this.countryPicker = ref;
}}
onChange={value => this.selectCountry(value)}
translation="eng"
cca2={this.state.cca2}
>
<View />
</CountryPicker>
</View>
);
}
}
let styles = StyleSheet.create({
container: {
flex: 1,
alignItems: 'center',
padding: 20,
paddingTop: 60,
},
});
module.exports = App;