Use style={[
{StyleIntoObj},
{StyleIntoObj}
]}
Example:
<Text
style={[
{opacity: resetPassword.length <= 8
? .7
: 1
},
{color: resetPassword.length <= 8
? color1
: color2
}
]}
>Minimum 8 characters</Text>
<View style={[StyleObject.yourStyle, { backgroundColor: "blue" }]}></View>
<Text style={{color: 'blue', fontSize: 30}} />