2
react native
uygulamasında, 'react-native-vector-icons/MaterialIcons'
kullanıyorum.React Doğal esnek kutu hizalama simgesi ve metni
Bazı metinlerle bir <
düğmeyi denerim. Ne yazık ki, <
simgesi metnin ortasına hizalanmamış. Metin, <
ile aynı çizgide, ancak orta hizalı yerine alt hizalanmış.
flex: 1
kodlamadım. Kod güncellendi.
Kodum
<TouchableOpacity style={styles.navBarLeftButton}>
<Icon name="chevron-left" />
<Text style={styles.buttonText}>My Button</Text>
</TouchableOpacity>
Benim stilleri
navBarLeftButton: {
flex: 1,
flexDirection: 'row',
alignItems: 'center',
justifyContent: 'flex-start'
width: 100,
paddingLeft: 8
}
buttonText: {
color: 'rgba(255,255,255,0.70)',
fontSize: 14
}
dahaki sefere (https://rnplay.org/) [RNPlay] üzerinde örnek bir proje oluşturmayı deneyin böylece topluluk hızla sorunun ne olduğunu anlamak ve sonra kalite çözüm sağlayabilir . – Mihir