I am trying to acheive what the image below represents with Flexbox in React Native with Views, if you have a basic example of this that would be amazing:
Asked
Active
Viewed 1,141 times
0

Asons
- 84,923
- 12
- 110
- 165

Robert Saunders
- 403
- 8
- 22
-
We don't write up code here, so show us what you got so far – Asons Sep 26 '17 at 20:39
1 Answers
2
Something like this:
<View style={{ flex: 1, flexDirection: 'column'}}>
<View style={{ height: 70, backgroundColor: 'blue' }}>
</View>
<View style={{ height: 70, backgroundColor: 'green' }}>
</View>
<View style={{ flex: 1, backgroundColor: 'yellow' }}>
</View>
</View>
Not sure if the blue lines are lines / padding / etc, but you should be able to add those into this shell.

Abe Clark
- 166
- 1
- 10