Skip to content

Instantly share code, notes, and snippets.

View kacperkapusciak's full-sized avatar

Kacper Kapuściak kacperkapusciak

View GitHub Profile
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() {
@kacperkapusciak
kacperkapusciak / reanimated-outline.tsx
Last active July 9, 2025 07:05
React Native Reanimated 4 view outline animation
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",
};
@kacperkapusciak
kacperkapusciak / react-native-debugging-tools-comparison.csv
Last active June 12, 2025 07:19
React Native Debugging Tools Comparison
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