-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathbottom-modal.tsx
52 lines (49 loc) · 1 KB
/
bottom-modal.tsx
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
import React from "react";
import {
Modal,
SafeAreaView,
View,
StyleSheet,
TouchableOpacity,
Text,
} from "react-native";
export const BottomModal = ({
open,
setModalOpen,
onRequestClose,
modalBackgroundStyle,
modalOptionsContainerStyle,
modalProps,
children,
}: any) => {
if (!open) return null;
return (
<TouchableOpacity
onPress={() => setModalOpen?.(false)}
style={[
styles.modalContainer,
styles.modalOptionsContainer,
modalBackgroundStyle,
]}
>
<SafeAreaView style={[modalOptionsContainerStyle]}>
{children}
</SafeAreaView>
</TouchableOpacity>
);
};
const styles = StyleSheet.create({
modalContainer: {
flex: 1,
},
// modalBackgroundStyle: { backgroundColor: "rgba(0, 0, 0, 0.5)" },
modalOptionsContainer: {
maxHeight: "50%",
borderColor: "#ccc",
borderWidth: 1,
borderBottomWidth: 0,
backgroundColor: "#fff",
borderTopLeftRadius: 16,
borderTopRightRadius: 16,
},
});