create navigation in react native code example
Example 1: navigation in react native
import { useNavigation } from '@react-navigation/native';
const navigation = useNavigation();
navigation.navigate('WallScreen')
Example 2: navigation in react native
### ISNTALATION
npm install @react-navigation/native --save
yarn add @react-navigation/native
### core dependencies
expo install react-native-gesture-handler react-native-reanimated react-native-screens react-native-safe-area-context @react-native-community/masked-view
### stack navigation
yarn add @react-navigation/stack
Example 3: how to go to settings on next click in react native
const storeData = data => {
Settings.set(data);
setData(Settings.get("data"));
};