UNPKG

389 BJavaScriptView Raw
1import { StyleSheet } from 'react-native';
2
3const radius = 10;
4const styles = StyleSheet.create({
5 container: {
6 ...StyleSheet.absoluteFillObject,
7
8 backgroundColor: 'transparent',
9 overflow: 'hidden',
10 },
11
12 ripple: {
13 width: radius * 2,
14 height: radius * 2,
15 borderRadius: radius,
16 overflow: 'hidden',
17 position: 'absolute',
18 }
19});
20
21export { styles, radius };