UNPKG

@lunalee/react-native-raw-bottom-sheet

Version:

Add Your Own Component To Bottom Sheet Whatever You Want (Android & iOS)

33 lines (30 loc) 567 B
import { StyleSheet } from "react-native"; const styles = StyleSheet.create({ wrapper: { flex: 1, backgroundColor: "#00000077" }, mask: { flex: 1, backgroundColor: "transparent" }, container: { backgroundColor: "#fff", width: "100%", height: 0, overflow: "hidden" }, draggableContainer: { width: "100%", alignItems: "center", backgroundColor: "transparent" }, draggableIcon: { width: 35, height: 5, borderRadius: 5, margin: 10, backgroundColor: "#ccc" } }); export default styles;