Is there documentation re: this anywhere? Thanks in advance.
Thx @sibelius, yeah look elsewhere for badges or simply make it yourself with borderRadius :-)
<View style={styles.badgeIconView}>
<Text style={styles.badge}> 2 </Text>
<Image source={require('./images/icon.png')} style={{width:30,height:30}} />
</View>
and style below:
badgeIconView:{
position:'relative',
padding:5
},
badge:{
color:'#fff',
position:'absolute',
zIndex:10,
top:1,
right:1,
padding:1,
backgroundColor:'red',
borderRadius:5
}
Most helpful comment
and style below: