react-native-actions-sheet
Version:
A Cross Platform(Android & iOS) ActionSheet with a robust and flexible api, native performance and zero dependency code for react native. Create anything you want inside ActionSheet.
27 lines (26 loc) • 601 B
JavaScript
import { StyleSheet } from "react-native";
export var styles = StyleSheet.create({
scrollView: {
height: "100%",
width: "100%",
backgroundColor: "transparent",
},
container: {
width: "100%",
backgroundColor: "white",
alignSelf: "center",
},
indicator: {
height: 6,
width: 45,
borderRadius: 100,
backgroundColor: "#f0f0f0",
marginVertical: 5,
alignSelf: "center",
},
parentContainer: {
flex: 1,
justifyContent: "center",
alignItems: "center",
},
});