An open API service indexing awesome lists of open source software.

https://github.com/opensource-direct/react-native-navigation

Navigation Implementation in React Native move to another Screen in App
https://github.com/opensource-direct/react-native-navigation

mobile-development npm react-native react-navigation

Last synced: 2 months ago
JSON representation

Navigation Implementation in React Native move to another Screen in App

Awesome Lists containing this project

README

          

# ReactNativeNavigation
Navigation Implementation in React Native move to another Screen in App, Preferensi Belajar React Native Navigation here : https://www.youtube.com/watch?v=sDJq57nEuBk&list=PLXwOLdizIwSQ0Bd4Jf8HhSbRqmXPE0uAH

## A. Create Project React Native

Screen Shot 2023-03-28 at 15 25 25

## B. Install Plugin for React Native Navigation

Screen Shot 2023-03-28 at 15 28 34

Pastekan App.js

```js
// In App.js in a new project

import * as React from 'react';
import { View, Text } from 'react-native';
import { NavigationContainer } from '@react-navigation/native';
import { createNativeStackNavigator } from '@react-navigation/native-stack';

function HomeScreen() {
return (

Home Screen

);
}

const Stack = createNativeStackNavigator();

function App() {
return (





);
}

export default App;
```

Ketika di running kemudian muncul seperti berikut

Screen Shot 2023-03-28 at 15 34 59

Installkan kembali beberapa paket berikut

Screen Shot 2023-03-28 at 15 37 28

Stop, dan Running ulang dengan menjalankan `yarn start` kemudian `yarn android`, dan berikut hasil running kembalinya

Screen Shot 2023-03-28 at 15 37 41