Answers for "how to add two styles in react native"

CSS
1

combining two styles react native

<View style={[styles.base, styles.background]} />
Posted by: Guest on December-02-2021
4

multiple styling react native

style={[
			styles.button,
			{ backgroundColor: 'green' }
		  ]}
Posted by: Guest on December-09-2020

Code answers related to "how to add two styles in react native"

Browse Popular Code Answers by Language