Que : How to apply border raduis to inner view of progress bar
Version
"react": "16.13.1",
"react-native": "0.63.4",
"react-native-progress": "^5.0.0",
Expected output

Current behaviour

Code
<Progress.Bar
color={'rgb(128,0,128)'}
progress={0.5}
borderWidth={1}
borderColor={'rgba(128,0,128,0.2)'}
unfilledColor={'white'}
height={10}
borderRadius={7.5}
width={200}
style={{ padding: 2, }}
/>
So after applying style with padding 2 I'll get the space for inner view
but when I try below code it wont work for me
style={{ padding: 2,borderRadius:10 }}
So how apply border radius for inner view as per expected output
Que : How to apply border raduis to inner view of progress bar
Version
Expected output

Current behaviour

Code
So after applying style with padding 2 I'll get the space for inner view
but when I try below code it wont work for me
style={{ padding: 2,borderRadius:10 }}So how apply border radius for inner view as per expected output