Relative Content

Tag Archive for react-nativeexponavigationexpo-router

I am unable to navigate to new screen using router.push using gesture handler tap

import { router } from “expo-router”; import { StyleSheet, Pressable, View, Text } from “react-native”; import { GestureDetector, Gesture } from “react-native-gesture-handler”; type NoteInputType = { note: any; }; export default function Note({ note }: NoteInputType) { const noteText = note?.get(“text”); const noteId = note?.id; const link = `editnote/${noteId}`; const singleTap = Gesture.Tap() .maxDuration(250) .onEnd(() […]