give shadow to view react native code example
Example 1: shadow elevation react native
shadowColor: "#000",
shadowOffset: {
width: 0,
height: 3,
},
shadowOpacity: 0.27,
shadowRadius: 4.65,
elevation: 6,
Example 2: react native shadow android
<View style={{ elevation: 2 }}>
{children}
</View>