31 lines
501 B
TypeScript
31 lines
501 B
TypeScript
import { StyleSheet } from "react-native";
|
|
|
|
const styles = StyleSheet.create({
|
|
modal: {
|
|
justifyContent: "flex-end",
|
|
margin: 0,
|
|
},
|
|
|
|
modalContent: {
|
|
backgroundColor: "white",
|
|
borderTopRightRadius: 8,
|
|
borderTopLeftRadius: 8,
|
|
overflow: "hidden",
|
|
maxHeight: "90%",
|
|
},
|
|
|
|
barContainer: {
|
|
alignItems: "center",
|
|
paddingVertical: 10,
|
|
},
|
|
|
|
barIcon: {
|
|
width: 60,
|
|
height: 5,
|
|
backgroundColor: "#bbb",
|
|
borderRadius: 3,
|
|
},
|
|
});
|
|
|
|
export default styles;
|