@gorhom/bottom-sheet
Version:
A performant interactive bottom sheet with fully configurable options 🚀
21 lines (19 loc) • 373 B
text/typescript
import { StyleSheet } from 'react-native';
export const styles = StyleSheet.create({
container: {
position: 'absolute',
left: 4,
top: 80,
padding: 2,
width: 400,
backgroundColor: 'rgba(0, 0,0,0.5)',
},
text: {
fontSize: 14,
lineHeight: 16,
textAlignVertical: 'center',
height: 20,
padding: 0,
color: 'white',
},
});