1 <View style={{flex: 1, flexDirection: 'row'}}>
2 <View style={{
3 backgroundColor: 'blue',
4 flexGrow: 1,
5 }}>
6 <Text>Fluid</Text>
7 </View>
8 <View style={{
9 backgroundColor: 'red',
10 width: 100,
11 }}>
12 <Text>Fixed</Text>
13 </View>
14 </View>