我的应用中有一些视图,
第一个和最后一个具有固定尺寸,但中间视图我将填充剩余空间。
我该怎么做?
let probableView = (!someVariable) ? null : (<View style={{ height: "10%" }}/>);
...
<View
style={{
flex: 1,
flexDirection: "column",
justifyContent: "space-around",
height: "100%",
width: "100%",
}}
>
<View style={{ height: "10%" }}/>
{ probableView }
<View/> <------------------ How can I fill automatically the remain space?
<View style={{ height: "10%" }}/>
</View>