@crossed/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.
35 lines (32 loc) • 691 B
text/typescript
/**
* Copyright (c) Paymium.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root of this projects source tree.
*/
import { StyleSheet } from 'react-native';
export const 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',
},
});