export default function App() {
const [r, setR] = useState(true);
return (
<View style={styles.container}>
<TouchableOpacity style={[styles.button, {backgroundColor: r? "blue":"yellow"}]}>
<Text style={{color: r? "black":"blue"}}>
Invoke Fancy Button
</Text>
</TouchableOpacity>
</View>
);
}
/*keep in mind you must keep your dynamic styling separate from your static stuff*/