{"id":24990670,"url":"https://github.com/jorneycr/crudnative-mobile","last_synced_at":"2026-05-16T00:34:23.571Z","repository":{"id":213327546,"uuid":"733208811","full_name":"jorneycr/crudnative-mobile","owner":"jorneycr","description":"React Native with React Natigator","archived":false,"fork":false,"pushed_at":"2023-12-20T15:49:52.000Z","size":408,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-02-04T13:41:43.454Z","etag":null,"topics":["json-server","react-native","react-native-navigation","react-paper","vector-icons"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","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/jorneycr.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-12-18T20:07:43.000Z","updated_at":"2024-12-17T16:30:56.000Z","dependencies_parsed_at":null,"dependency_job_id":"14f78377-07a4-40f0-a14f-63e80e06432e","html_url":"https://github.com/jorneycr/crudnative-mobile","commit_stats":null,"previous_names":["jorneycr/crudnative-mobile"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jorneycr%2Fcrudnative-mobile","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jorneycr%2Fcrudnative-mobile/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jorneycr%2Fcrudnative-mobile/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jorneycr%2Fcrudnative-mobile/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jorneycr","download_url":"https://codeload.github.com/jorneycr/crudnative-mobile/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":246187210,"owners_count":20737459,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["json-server","react-native","react-native-navigation","react-paper","vector-icons"],"created_at":"2025-02-04T13:38:17.661Z","updated_at":"2025-10-11T01:15:17.997Z","avatar_url":"https://github.com/jorneycr.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"This is a new [**React Native**](https://reactnative.dev) project, bootstrapped using [`@react-native-community/cli`](https://github.com/react-native-community/cli).\n\n# Getting Started\n\n\u003e **Note**: Make sure you have completed the [React Native - Environment Setup](https://reactnative.dev/docs/environment-setup) instructions till \"Creating a new application\" step, before proceeding.\n\n## Step 1: Start the Metro Server\n\nFirst, you will need to start **Metro**, the JavaScript _bundler_ that ships _with_ React Native.\n\nTo start Metro, run the following command from the _root_ of your React Native project:\n\n```bash\nnpx react-native@latest init crudnative\n```\n\n````bash\n# using npm\nnpm start\n\n## Step 2: Start your Application\n\nLet Metro Bundler run in its _own_ terminal. Open a _new_ terminal from the _root_ of your React Native project. Run the following command to start your _Android_ or _iOS_ app:\n\n### For Android\n\n```bash\n# using npm\nnpm run android\n\n# OR using Yarn\nyarn android\n````\n\n## React navigator\n\n### Dependecies\n\n```bash\n\n# You must install all of them to make it works\nnpm i @react-navigation/native\n\nnpm install react-native-screens react-native-safe-area-context\n\nnpm install @react-navigation/native-stack\n\n\n# Then Rebuild your app\nnpx react-native run-android\n\n```\n\n### Configuration for android\n\n```bash\n\n# In android\\app\\src\\main\\java\\com\\reactnatigation\\MainActivity.kt\n\nimport android.os.Bundle;\n\n\n# inside of the MainActivity: ReactActivity() { .... }, add at the end the next code\n\noverride fun onCreate(savedInstanceState: Bundle?) {\n    super.onCreate(null)\n}\n\n```\n\n### Set up React navigator\n\n```bash\n# In App.jsx\n\nimport React from 'react';\nimport {NavigationContainer} from '@react-navigation/native';\nimport {createNativeStackNavigator} from '@react-navigation/native-stack';\n\nimport Home from './src/views/Home';\nimport About from './src/views/About';\n\nconst Stack = createNativeStackNavigator();\n\nfunction App() {\n  return (\n    \u003cNavigationContainer\u003e\n      \u003cStack.Navigator initialRouteName=\"Home\"\u003e\n        \u003cStack.Screen name=\"Home\" component={Home} /\u003e\n        \u003cStack.Screen name=\"About\" component={About} /\u003e\n      \u003c/Stack.Navigator\u003e\n    \u003c/NavigationContainer\u003e\n  );\n}\n\nexport default App;\n\n\n```\n\n### Oficial Documentation\n\n`https://reactnavigation.org/docs/hello-react-navigation`\n\n## Icons\n\n### Dependencies\n\n```bash\nnpm install react-native-vector-icons\n\n```\n\n### Set Up Android\n\n```bash\n\n# In android\\app\\build.gradle\n\napply from: \"../../node_modules/react-native-vector-icons/fonts.gradle\"\n\n```\n\n`https://oblador.github.io/react-native-vector-icons/`\n\n## Set up Fake API in 30 seg\n\n### Dependencies\n\n```bash\nnpm install -g json-server\n\n```\n\n### Create a file in the projet's root\n\n```bash\ndb.json\n```\n\n### Run Fake API\n\n##### Check your local IP for Android on Windows in cmd ipconfig\n\n```bash\njson-server db.json -H 192.168.20.62\n\n```\n\n### End-Points\n\n[Home](http://192.168.0.6:3000)\n\n[Get Clientes](http://192.168.0.6:3000/clientes)\n\n[Post Clientes](http://192.168.0.6:3000/clientes)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjorneycr%2Fcrudnative-mobile","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjorneycr%2Fcrudnative-mobile","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjorneycr%2Fcrudnative-mobile/lists"}