I have an element that I want to float right, for example
<View style={{width: 300}}>
<Text style={{backgroundColor: "#DDD"}}>Hello</Text>
</View>
How can the Text
be floated / aligned to the right? Also, why does the Text
take up the full space of the View
, instead of just the space for “Hello”?