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 / 2, height: width / 2, backgroundColor: 'red', position: 'absolute', bottom: -35, left: width / 4 - 15, borderRadius: width / 4, transform: [ {scaleX: 2}, {scaleY: 0.25} ] },
I've been able to get above but rather have a less bad solution right in the same view, not as in the example in a second view.


