Answers for "text justification react native"

7

react native text wrap

<View
    style={{ flexDirection: 'row' }}
> 
   <Text style={{ flexShrink: 1 }}>
       Really really long text...
   </Text>
</View>
Posted by: Guest on April-21-2020
0

textalignvertical not working in ios react native

{
    height: 30,
    textAlignVertical: 'center',
    ...Platform.select({
        ios: {
            lineHeight: 30 // as same as height
        },
        android: {}
    })
}
Posted by: Guest on January-06-2022

Code answers related to "Javascript"

Browse Popular Code Answers by Language