{"id":20301576,"url":"https://github.com/zero-one-group/ionic-react-native-flutter","last_synced_at":"2025-04-11T13:36:24.900Z","repository":{"id":46160434,"uuid":"418721618","full_name":"zero-one-group/ionic-react-native-flutter","owner":"zero-one-group","description":"Comparison of Ionic, React Native, and Flutter in one monorepo because why not?","archived":false,"fork":false,"pushed_at":"2021-11-10T08:32:37.000Z","size":1783,"stargazers_count":6,"open_issues_count":0,"forks_count":0,"subscribers_count":3,"default_branch":"master","last_synced_at":"2023-03-06T00:33:25.324Z","etag":null,"topics":["flutter","hybrid","ionic","react-native"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","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/zero-one-group.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}},"created_at":"2021-10-19T01:03:00.000Z","updated_at":"2022-05-22T16:31:03.000Z","dependencies_parsed_at":"2022-09-24T17:32:07.151Z","dependency_job_id":null,"html_url":"https://github.com/zero-one-group/ionic-react-native-flutter","commit_stats":null,"previous_names":[],"tags_count":null,"template":null,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zero-one-group%2Fionic-react-native-flutter","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zero-one-group%2Fionic-react-native-flutter/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zero-one-group%2Fionic-react-native-flutter/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zero-one-group%2Fionic-react-native-flutter/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/zero-one-group","download_url":"https://codeload.github.com/zero-one-group/ionic-react-native-flutter/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":224652536,"owners_count":17347369,"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":["flutter","hybrid","ionic","react-native"],"created_at":"2024-11-14T16:26:35.300Z","updated_at":"2024-11-14T16:26:35.957Z","avatar_url":"https://github.com/zero-one-group.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cp align=\"left\" width=\"100%\"\u003e\n    \u003cimg src=\"assets/banner.png\" width=\"1000px\" /\u003e\n\u003c/p\u003e\n\n\nThis project was generated using [Nx](https://nx.dev).\n\n\u003e **Nb.** I have not installed nx cli locally, just using `npx` only. So in this Readme doc I will explain like in my local machine.\n\n\nTable of Contents\n- [Setup NX Workspace](#setup-nx-workspace)\n- [Setup Ionic React](#setup-ionic-react)\n- [Setup Flutter](#setup-flutter)\n- [Setup React Native](#setup-react-native)\n- [Running Applications](#running-applications)\n  - [Run Ionic App](#run-ionic-app)\n  - [Run Flutter App](#run-flutter-app)\n  - [Run React Native App](#run-react-native-app)\n\n\n## Setup NX Workspace\nIf you wanna to initiate application similarly to these repository, you can following few steps below. If don't, you can skip to [Running Applications](#running-applications).\n\nTo start initiate workspace you can run the following command.\n\n```bash\nnpx create-nx-workspace examples\n```\n- Then choose an `empty` workspace\n\n\n## Setup Ionic React\nFollow these commands to setup in ionic react.\n```bash\nyarn add @nxtend/ionic-react\nyarn nx generate @nxtend/ionic-react:init\nyarn nx g @nxtend/ionic-react:application profile-ionic\n```\n\nOr you can more explore in the [Nx Ionic React Documentation](https://nxtend.dev/docs/ionic-react/getting-started)\n\n\n## Setup Flutter\nPlease to ensure, you have been installed flutter on your local machine!.\nIf don't please follow [this official guideline](https://flutter.dev/docs/get-started/install) to install it.\n\nThen Follow these commands to setup in flutter.\n\n```bash\nyarn add @nxrocks/nx-flutter\nyarn nx g @nxrocks/nx-flutter:create profile-flutter\n```\n\nYou also can more explore at [Nx Flutter Documentation](https://github.com/tinesoft/nxrocks/tree/develop/packages/nx-flutter#nx-flutter)\n\n\n## Setup React Native\nPlease to ensure, you have been installed React Native Environment on your local machine!\nIf don't please follow [the official guideline](https://reactnative.dev/docs/environment-setup) to setup it.\n\nThen Follow these commands to setup in flutter\n```bash\nyarn add @nrwl/react-native\nyarn nx g @nrwl/react-native:app profile-react-native\n```\n\nMore details can read at [Nx React Native Documentation](https://github.com/nrwl/nx-react-native)\n\n\n## Running Applications\nTo running these applications perfectly, you must installed anything environment needed as mentioned above.\n\nAlso, since we are building hybrid mobile application. Ensure, you have been installed Node.js correctly.\n\n```bash\n# Install all dependencies\nyarn\n```\n\n### Run Ionic App\nYou can simply execute this command to run Ionic Application in your default browser.\n```bash\nyarn start:ionic\n```\n\nBut, if you prefer to run it on your Android emulator, you can running this command:\n```bash\nyarn start:ionic-android\n```\nThe command above will opened your Ionic Android codebase in you Android Studio. Then you can run it over there.\n\n\n### Run Flutter App\nYou can run with command below or simply press either `F5` (Windows) or `fn+F5` (Mac) in your VSCode (runing your emulator first)\n```bash\nyarn start:flutter\n```\n\n### Run React Native App\n\n```bash\n# to run react native app in default browser\nyarn start:rn-web\n\n# To run react native app in android emulator\nyarn start:rn-android\n\n# To run react native app in XCode emulator\nyarn start:rn-ios\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzero-one-group%2Fionic-react-native-flutter","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fzero-one-group%2Fionic-react-native-flutter","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzero-one-group%2Fionic-react-native-flutter/lists"}