反映原生布局固定宽度并拉伸剩余空间

时间:2017-05-05 11:34:54

标签: javascript reactjs react-native

如何在react-native中制作这样的东西?

在右侧,我想要一个具有固定宽度的组件,在左侧,将所有剩余空间放在另一个组件上。

enter image description here

1 个答案:

答案 0 :(得分:13)

试试这个:

  <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>