This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import AntDesign from "@expo/vector-icons/AntDesign"; | |
import MaskedView from "@react-native-masked-view/masked-view"; | |
import { useRef, useState } from "react"; | |
import { Pressable, StyleSheet, TextInput, View } from "react-native"; | |
import { KeyboardAvoidingView } from "react-native-keyboard-controller"; | |
import Animated, { FadeInDown } from "react-native-reanimated"; | |
const AnimatedPressable = Animated.createAnimatedComponent(Pressable); | |
export default function Index() { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import Feather from "@expo/vector-icons/Feather"; | |
import { useState } from "react"; | |
import { Pressable, StyleSheet, Text, View } from "react-native"; | |
import MapView from "react-native-maps"; | |
import Animated from "react-native-reanimated"; | |
const colors = { | |
primary: "#3b82f6", | |
secondary: "#ef4444", | |
}; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Feature | React Native DevTools | Radon IDE | Reactotron | Xcode & Android Studio | |
---|---|---|---|---|---|
Logs | ✅ | ✅ | ✅ | ✅ (Native Logs) | |
JavaScript Debugger | ✅ | ✅ | ❌ | ❌ | |
Network Inspector | ⚠️ (Unstable) | ✅ | ✅ | ✅ (Native Traffic) | |
React DevTools | ✅ | ✅ | ❌ | ❌ | |
Memory Profiling | ✅ (JS Heap) | ❌ | ❌ | ✅ (Native Memory) | |
CPU Profiling | ✅ (React) | ✅ (JS, React) | ❌ | ✅ (Native) | |
Jump from Preview to Code | ❌ | ✅ | ❌ | ❌ | |
Redux DevTools | ❌ | ✅ | ✅ | ❌ | |
Local Storage Inspection | ❌ | ❌ | ✅ | ❌ |