69 lines
1.5 KiB
JavaScript
69 lines
1.5 KiB
JavaScript
import React, {useState, useEffect} from 'react';
|
|
import {
|
|
StatusBar,
|
|
StyleSheet,
|
|
Text,
|
|
View,
|
|
TouchableHighlight,
|
|
TextInput,
|
|
ScrollView,
|
|
Dimensions,
|
|
TouchableOpacity,
|
|
} from 'react-native';
|
|
import {Icon} from 'react-native-elements';
|
|
|
|
const WIDTH = Dimensions.get('window').width;
|
|
const HEIGHT = Dimensions.get('window').height;
|
|
const DropDown = props => {
|
|
const [isModalVisible, setisModalVisible] = useState(false);
|
|
|
|
const onPressItem = option => {
|
|
props.changeModalVisibility(false);
|
|
props.setData(option);
|
|
};
|
|
|
|
const option = props.options.map((item, index) => {
|
|
return (
|
|
<TouchableOpacity
|
|
style={styles.option}
|
|
key={index}
|
|
onPress={() => onPressItem(item)}>
|
|
<Text style={styles.text}>{item}</Text>
|
|
</TouchableOpacity>
|
|
);
|
|
});
|
|
return (
|
|
<TouchableOpacity
|
|
onPress={() => props.changeVisibility(false)}
|
|
styles={styles.container}>
|
|
<View style={[styles.modal, {width: WIDTH - 20, height: HEIGHT / 3}]}>
|
|
<ScrollView>{option}</ScrollView>
|
|
</View>
|
|
</TouchableOpacity>
|
|
);
|
|
};
|
|
|
|
const styles = StyleSheet.create({
|
|
container: {
|
|
flex: 1,
|
|
justifyContent: 'center',
|
|
alignItems: 'center',
|
|
},
|
|
modal: {
|
|
marginTop: '55%',
|
|
alignSelf: 'center',
|
|
backgroundColor: 'grey',
|
|
borderRadius: 10,
|
|
},
|
|
option: {
|
|
alignItems: 'flex-start',
|
|
},
|
|
text: {
|
|
margin: 20,
|
|
fontSize: 20,
|
|
fontWeight: 'bold',
|
|
},
|
|
});
|
|
|
|
export default DropDown;
|