how to create a triangle using style sheet with an inner curved base ? I know how to create a triangle by using style sheet . Please consider following code
triangleShapeLeft: {
width: 0,
height: 0,
backgroundColor: 'transparent',
borderStyle: 'solid',
borderLeftWidth: halfHeight / 3,
borderRightWidth: halfHeight / 3,
borderBottomWidth: halfHeight / 2,
borderLeftColor: 'transparent',
borderRightColor: 'transparent',
borderBottomColor: "#000",
transform: [
{ rotate: '270deg' }
],
margin: 0,
marginLeft: 0,
borderWidth: 0,
borderColor: "transparent",
position: "absolute",
left: -arrowBottom - padddingVertical,
top: halfHeight - padddingVertical,
}
this will be a normal triangle. but my question is how can I bent one side of this triangle just like below image
I already tried using border Radius, But it will only curve outer circle way. I want an inner circle curve. Please help me to achieve this.
