React Native Cheat Sheet

Last Updated: November 21, 2025

Core Components

import { View, Text, Image, ScrollView, TextInput, Button } from 'react-native';

<View style={styles.container}>
  <Text>Hello World</Text>
  <Image source={{uri: 'https://...'}} />
  <TextInput placeholder="Enter text" />
  <Button title="Click me" onPress={() => {}} />
</View>

Styling

const styles = StyleSheet.create({
  container: {
    flex: 1,
    backgroundColor: '#fff',
    alignItems: 'center',
    justifyContent: 'center',
  }
});

Navigation

Stack Navigator
Screen stack navigation
Tab Navigator
Bottom tab navigation
Drawer Navigator
Side drawer menu
💡 Pro Tip: Use Expo for faster development and testing!
← Back to Web Frameworks | Browse all categories | View all cheat sheets