mirror of
https://github.com/Stef-00012/Zipline-Android-App.git
synced 2025-05-11 18:35:58 +02:00
[nobuild] move checkbox & select missing styles to @/styles, ipdate todo
This commit is contained in:
parent
743872bae0
commit
46f126a175
5 changed files with 37 additions and 16 deletions
|
@ -77,18 +77,16 @@ export default function Select({
|
|||
onRequestClose={() => setIsOpen(false)}
|
||||
>
|
||||
<TouchableOpacity
|
||||
style={{
|
||||
flex: 1,
|
||||
justifyContent: 'center',
|
||||
alignItems: 'center',
|
||||
backgroundColor: 'rgba(0, 0, 0, 0.5)',
|
||||
}}
|
||||
style={styles.selectContainer}
|
||||
onPress={() => setIsOpen(false)}
|
||||
>
|
||||
<View style={{ ...styles.select, width: '90%', maxHeight: maxHeight, borderRadius: 10 }}>
|
||||
<View style={{
|
||||
...styles.select,
|
||||
maxHeight: maxHeight
|
||||
}}>
|
||||
<FlatList
|
||||
data={data}
|
||||
style={{borderRadius: 10}}
|
||||
style={styles.openSelectContainer}
|
||||
keyExtractor={(item, index) => index.toString()}
|
||||
showsVerticalScrollIndicator={showScrollIndicator}
|
||||
renderItem={({ item, index }) => (
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue