Я создаю экран в реагирующем, где я должен отображать текст в родительском представлении.Как сделать так, чтобы весь текст отображался?
Сначала я подумал, что это проблема с переносом текста, поэтому я попробовал это решение из одного вопроса здесь
<View style={{flexDirection:'row'}}>
<Text style={{flex: 1, flexWrap: 'wrap'}}> You miss fdddddd dddddddd
You miss fdd
Another line
and another one
</Text>
</View>
Затем я попытался numberOfLines={1}
Это мой код
<View style={{ width: '100%', height: '15%', position: 'absolute', alignSelf: 'center', backgroundColor: 'rgba(255, 255, 255, 0.4)', borderRadius: 5, marginTop: '90%', }}>
<Text style={{ width: '80%', backgroundColor: 'transparent', alignSelf: 'center', textAlign: 'center', fontSize: 18, color: '#005F6A', marginTop: '5%' }}>
{`Text the first &
Text the second &
text the third`}
</Text>
</View>
Я ожидаю, что весь текст будет отображаться, но будет отображаться только первая строка