How can i add the curved bottom to a View in react-native? See curved example
I\'f tried to a add an second view like this:
headerBottom: { width: width
i use border bottom radius. this is work.
class Home extends Component { render() { return ( ) } } const styles= StyleSheet.create({ oval: { height: 100, borderBottomLeftRadius: 50, borderBottomRightRadius: 50, backgroundColor: 'red' }, });