rn-navigation
Installation
SKILL.md
React Navigation 7 in React Native
Instructions
Use @react-navigation/native v7 with @react-navigation/native-stack. Every route must be typed via a shared ParamList.
1. Typed Route Definitions
// src/app/navigation/types.ts
import type { NativeStackScreenProps } from '@react-navigation/native-stack';
import type { BottomTabScreenProps } from '@react-navigation/bottom-tabs';
export type RootStackParamList = {
Tabs: undefined;
Article: { id: string };
Login: { returnTo?: string } | undefined;
};