我正在尝试将文本放入有限的空间(黄色容器)中。 如何在Android中解决this problem?
在iOS the problem is solved中,通过AdjustsFontSizeToFit = {true}。
我的代码:
<View
style={{
backgroundColor: 'yellow',
flex: 0.8,
marginRight: 10,
flexDirection: 'column',
justifyContent: 'center',
alignItems: 'center'
}}
>
<CustomText style={{ fontWeight: '400' }}>{`Qt. ${orderProduct.quantity}`}</CustomText>
<PriceText
style={{
fontWeight: '600',
fontSize: 18,
color: '#000'
}}
price={price}
/>
</View>