1 const styles = StyleSheet.create({
2 CircleShapeView: {
3 width: 50,
4 height: 50,
5 borderRadius: 50/2,
6 backgroundColor: '#000'
7 },
8 });
9
10<Image
11style={[ styles.CircleShapeView, { backgroundColor: "#fff" } ]} {/*this part overrides*/}
12...
13/>
14