In React Native way, if I have this structure:
function Component(props){
return (
<View style={props.style1}>
<View style={{overflow: hidden}}>
<View style={props.style2}></View>
</View>
</View>
);
}
How can I override the {overflow: hidden}
on the 2nd View?
Let say that I don't have the capability to change the Component because I use a library that I don't have access to.