Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save leodutra/48ffc051de60083f4b6e527228d3a0b7 to your computer and use it in GitHub Desktop.
Save leodutra/48ffc051de60083f4b6e527228d3a0b7 to your computer and use it in GitHub Desktop.
react-native two column layout
<View style={{ justifyContent: 'center', alignItems: 'center', flexDirection: 'row', flex: 1}}>
<View>
<Text>Left</Text>
</View>
<View>
<Text>Right</Text>
</View>
</View>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment