I have this issue only with IOS platform
This is my code :
<MaterialIcon name={props.iconName} size={25} color='white' style={{padding:5, borderRadius: 50, backgroundColor: '#727272'}}/>
As you can see i set borderRadius 50 but i can't see any changes
And this is what it look like :

Any help regarding this would be helpful
Icons are Text components where borderRadius doesn't have any effect, wrap it in a view 馃檪
<View style={{padding:5, borderRadius: 50, backgroundColor: '#727272'}}>
<MaterialIcon name={'assignment-late'} size={25} color='white'/>
</View>
![]()
(Screenshot from iOS build)
doesn't work for me
This worked for me. https://github.com/facebook/react-native/issues/13760#issuecomment-314291934
Most helpful comment
Icons are
Textcomponents where borderRadius doesn't have any effect, wrap it in a view 馃檪(Screenshot from iOS build)