bottom shadow react native code example
Example 1: shadow in react native
shadowColor: "#000",
shadowOffset: {
width: 0,
height: 1,
},
shadowOpacity: 0.22,
shadowRadius: 2.22,
elevation: 3,
Example 2: bottom shadow in react native
const styles = StyleSheet.create({
container: {
...Platform.select({
ios: {
shadowColor: '#000',
shadowOffset: {width: 1, height: 3},
shadowOpacity: 0.2,
},
android: {
elevation: 4,
},
}),
},
});