shadow box in react native code example
Example 1: box shadow react native
shadowColor: "#000",
shadowOffset: {
width: 0,
height: 2,
},
shadowOpacity: 0.25,
shadowRadius: 4.84,
elevation: 5,
Example 2: shadow in react native
shadowColor: "#000",
shadowOffset: {
width: 0,
height: 1,
},
shadowOpacity: 0.22,
shadowRadius: 2.22,
elevation: 3,
Example 3: box shadow in react native
shadowColor: "#000",
shadowOffset: {
width: 0,
height: 4,
},
shadowOpacity: 0,
shadowRadius: 4.65,
elevation: 8,
Example 4: react native shadow
shadowColor: "#000",
shadowOffset: {
width: 0,
height: 2,
},
shadowOpacity: 0.25,
shadowRadius: 3.84,
elevation: 5,
Example 5: react native shadow android
<View style={{ elevation: 2 }}>
{children}
</View>