Skip to content

Instantly share code, notes, and snippets.

@tomekzaw
Last active February 8, 2026 20:36
Show Gist options
  • Select an option

  • Save tomekzaw/0159dc4fe4e1d352c5d401160b3fa1c8 to your computer and use it in GitHub Desktop.

Select an option

Save tomekzaw/0159dc4fe4e1d352c5d401160b3fa1c8 to your computer and use it in GitHub Desktop.
import React from 'react';
import { StyleSheet, Text, View } from 'react-native';
export default function App() {
return (
<View style={styles.container}>
<View style={{ flexDirection: 'row' }}>
<Text>Left</Text>
<Text style={{ backgroundColor: 'red' }}></Text>
<Text>Right</Text>
</View>
</View>
);
}
const styles = StyleSheet.create({
container: {
flex: 1,
alignItems: 'center',
justifyContent: 'center',
},
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment