Answers for "react native override style"

0

react native override style

const styles = StyleSheet.create({
      CircleShapeView: {
        width: 50,
        height: 50,
        borderRadius: 50/2,
        backgroundColor: '#000'
    },
    });

<Image
style={[ styles.CircleShapeView, { backgroundColor: "#fff" } ]}   {/*this part overrides*/}                
...
/>
Posted by: Guest on August-27-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language