In my react-native project, I am using react-native-elements library render an Avatar rounded component. Something like below:
<Avatar
size="small"
rounded
title="MT"
activeOpacity={0.7}
/>
The above code renders a circle like this:
Now I need to have a green color circle around the above Avatar to make the Avatar looks like having a green thick border around it. How to achieve that?
==== update ====
I tried:
<Avatar
size="small"
rounded
title="User"
avatarStyle={{
borderWidth: 3,
borderColor: 'green',
}}
/>
So, on Android it doesn't look like a circle border, how to resolve that issue on Android?


