How can I make something like this in react-native ?
In the right I want a component that has a fixed width, and in the left taking all the remaining space another component.
How can I make something like this in react-native ?
In the right I want a component that has a fixed width, and in the left taking all the remaining space another component.
Share Improve this question asked May 5, 2017 at 11:34 adi.neagadi.neag 6432 gold badges12 silver badges27 bronze badges1 Answer
Reset to default 21Try this:
<View style={{flex: 1, flexDirection: 'row'}}>
<View style={{
backgroundColor: 'blue',
flexGrow: 1,
}}>
<Text>Fluid</Text>
</View>
<View style={{
backgroundColor: 'red',
width: 100,
}}>
<Text>Fixed</Text>
</View>
</View>