{"id":22204724,"url":"https://github.com/opensource-direct/react-native-navigation","last_synced_at":"2026-04-11T10:36:16.642Z","repository":{"id":167000627,"uuid":"620204021","full_name":"opensource-direct/react-native-navigation","owner":"opensource-direct","description":"Navigation Implementation in React Native move to another Screen in App","archived":false,"fork":false,"pushed_at":"2023-03-28T09:01:07.000Z","size":311,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-10-20T02:53:43.139Z","etag":null,"topics":["mobile-development","npm","react-native","react-navigation"],"latest_commit_sha":null,"homepage":"","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/opensource-direct.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2023-03-28T08:21:47.000Z","updated_at":"2024-07-05T08:15:24.000Z","dependencies_parsed_at":null,"dependency_job_id":"cd670e29-9b85-4608-bd35-70750295da66","html_url":"https://github.com/opensource-direct/react-native-navigation","commit_stats":null,"previous_names":["aspsptyd/react-native-navigation","opensource-direct/react-native-navigation"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/opensource-direct/react-native-navigation","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/opensource-direct%2Freact-native-navigation","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/opensource-direct%2Freact-native-navigation/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/opensource-direct%2Freact-native-navigation/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/opensource-direct%2Freact-native-navigation/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/opensource-direct","download_url":"https://codeload.github.com/opensource-direct/react-native-navigation/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/opensource-direct%2Freact-native-navigation/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31677819,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-11T08:18:19.405Z","status":"ssl_error","status_checked_at":"2026-04-11T08:17:08.892Z","response_time":54,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["mobile-development","npm","react-native","react-navigation"],"created_at":"2024-12-02T17:19:21.386Z","updated_at":"2026-04-11T10:36:16.457Z","avatar_url":"https://github.com/opensource-direct.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# ReactNativeNavigation\nNavigation Implementation in React Native move to another Screen in App, Preferensi Belajar React Native Navigation here : https://www.youtube.com/watch?v=sDJq57nEuBk\u0026list=PLXwOLdizIwSQ0Bd4Jf8HhSbRqmXPE0uAH\n\n## A. Create Project React Native\n\n\u003cimg width=\"836\" alt=\"Screen Shot 2023-03-28 at 15 25 25\" src=\"https://user-images.githubusercontent.com/98740335/228175703-bf178233-78f0-4a95-88aa-2f3f1d40c100.png\"\u003e\n\n## B. Install Plugin for React Native Navigation\n\n\u003cimg width=\"996\" alt=\"Screen Shot 2023-03-28 at 15 28 34\" src=\"https://user-images.githubusercontent.com/98740335/228176572-c732e68d-762e-44c7-a00d-aae62eebcbf3.png\"\u003e\n\nPastekan App.js\n\n```js\n// In App.js in a new project\n\nimport * as React from 'react';\nimport { View, Text } from 'react-native';\nimport { NavigationContainer } from '@react-navigation/native';\nimport { createNativeStackNavigator } from '@react-navigation/native-stack';\n\nfunction HomeScreen() {\n  return (\n    \u003cView style={{ flex: 1, alignItems: 'center', justifyContent: 'center' }}\u003e\n      \u003cText\u003eHome Screen\u003c/Text\u003e\n    \u003c/View\u003e\n  );\n}\n\nconst Stack = createNativeStackNavigator();\n\nfunction App() {\n  return (\n    \u003cNavigationContainer\u003e\n      \u003cStack.Navigator\u003e\n        \u003cStack.Screen name=\"Home\" component={HomeScreen} /\u003e\n      \u003c/Stack.Navigator\u003e\n    \u003c/NavigationContainer\u003e\n  );\n}\n\nexport default App;\n```\n\nKetika di running kemudian muncul seperti berikut\n\n\u003cimg width=\"1680\" alt=\"Screen Shot 2023-03-28 at 15 34 59\" src=\"https://user-images.githubusercontent.com/98740335/228179026-f45fbd29-3b92-437b-ac9c-ab5245e9052c.png\"\u003e\n\nInstallkan kembali beberapa paket berikut\n\n\u003cimg width=\"920\" alt=\"Screen Shot 2023-03-28 at 15 37 28\" src=\"https://user-images.githubusercontent.com/98740335/228179329-76d7803a-ba46-4eb4-a198-8c0e7280b3b4.png\"\u003e\n\nStop, dan Running ulang dengan menjalankan `yarn start` kemudian `yarn android`, dan berikut hasil running kembalinya\n\n\u003cimg width=\"1680\" alt=\"Screen Shot 2023-03-28 at 15 37 41\" src=\"https://user-images.githubusercontent.com/98740335/228179478-44318b37-61dd-44e4-b784-619d1957401c.png\"\u003e\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fopensource-direct%2Freact-native-navigation","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fopensource-direct%2Freact-native-navigation","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fopensource-direct%2Freact-native-navigation/lists"}