react-native-inset-shadow
Version:
Inset shadows for react native components
33 lines (32 loc) • 500 B
JavaScript
import { StyleSheet } from 'react-native'
export default StyleSheet.create({
container: {
overflow: 'hidden',
height: '100%'
},
shadow: {
position: 'absolute',
backgroundColor: 'white',
alignSelf: 'center',
},
left: {
width: 10,
height: '100%',
left: -10
},
top: {
height: 10,
width: '100%',
top: -10
},
right: {
width: 10,
height: '100%',
right: -10
},
bottom: {
height: 10,
width: '100%',
bottom: -10
}
})