React Native: 0.61.2
React Native Paper: 3.4.0
When using TouchableRipple component, the borderRadius style property is NOT respected on Android
<TouchableRipple
onPress={...}
rippleColor="rgba(206,232,255,0.8)"
style={{
borderRadius: 50, //Works on iOS but on Android the ripple is square
height: 40,
width: 40}}
/>
This appears related to this PR: #788
Also might be related to issue #1601
@odesey Have you tried using borderless props on the TouchableRipple ?
@pixelize, setting the borderless prop works.
Thanks.
Most helpful comment
@pixelize, setting the
borderlessprop works.Thanks.