React Native Basics
Essential React Native components: View, Text, StyleSheet, and basic app structure.
Basic Structure
import React from 'react';
import { View, Text } from 'react-native';
export default function App() {
return (
Hello World!
);
}
Core Components
# View - container
Text content
# Image
'./image.png')} />
# Button
StyleSheet
const styles = StyleSheet.create({
container: {
flex: 1,
backgroundColor: '#fff',
alignItems: 'center'
}
});
Flexbox Layout
# Flex direction
flexDirection: 'row' | 'column'
# Alignment
justifyContent: 'center'
alignItems: 'center'
# Flex
flex: 1 # grow to fill