style={[
styles.button,
{ backgroundColor: 'green' }
]}
<View style={[styles.base, styles.background]} />
// use array of objects instead only object in style props
// to use multiple style
<Text style={[styles.red, styles.greenUnderline]}>Green underline</Text>
style={{...styles.abcd, ...anotherStyle}}