Chcę po prostu zmienić kolor przycisku, ale nie mogę. Próbowałem zmienić bezpośrednio w przycisk i przekazać mu styl. Ale żaden z nich nie zadziałał. Oto mój bardzo prosty kod.zmiana koloru przycisku reaguje natywnie
export default class Dots extends Component {
render() {
return (
<Image style={styles.container} source={require('./background3.png')}>
<Button title='play' style = {{color:'red'}}/>
</Image>
);
}
}
const styles = StyleSheet.create({
container: {
flex:1,
backgroundColor:'transparent',
resizeMode:'cover',
justifyContent:'center',
alignItems:'center',
width:null,
height:null
},
button:{
backgroundColor:'#ff5c5c',
}
});
color = '# ff5c5c' zmiana koloru tła w systemie Android. Jak mogę zmienić kolor tekstu i rozmiar czcionki? –