{"id":18298555,"url":"https://github.com/fusionauth/fusionauth-quickstart-flutter-native","last_synced_at":"2026-02-14T06:32:58.155Z","repository":{"id":198712518,"uuid":"693307848","full_name":"FusionAuth/fusionauth-quickstart-flutter-native","owner":"FusionAuth","description":"Flutter quickstart with FusionAuth","archived":false,"fork":false,"pushed_at":"2026-02-06T22:53:13.000Z","size":150,"stargazers_count":3,"open_issues_count":1,"forks_count":2,"subscribers_count":8,"default_branch":"main","last_synced_at":"2026-02-07T09:44:32.754Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"FreeMarker","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/FusionAuth.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":".github/CODEOWNERS","security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2023-09-18T19:08:31.000Z","updated_at":"2025-12-18T15:48:17.000Z","dependencies_parsed_at":"2024-11-05T15:07:07.593Z","dependency_job_id":"eb9cfe3d-4279-47f4-9034-8c97d1231b61","html_url":"https://github.com/FusionAuth/fusionauth-quickstart-flutter-native","commit_stats":null,"previous_names":["fusionauth/fusionauth-quickstart-flutter-native"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/FusionAuth/fusionauth-quickstart-flutter-native","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/FusionAuth%2Ffusionauth-quickstart-flutter-native","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/FusionAuth%2Ffusionauth-quickstart-flutter-native/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/FusionAuth%2Ffusionauth-quickstart-flutter-native/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/FusionAuth%2Ffusionauth-quickstart-flutter-native/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/FusionAuth","download_url":"https://codeload.github.com/FusionAuth/fusionauth-quickstart-flutter-native/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/FusionAuth%2Ffusionauth-quickstart-flutter-native/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29438779,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-14T05:24:35.651Z","status":"ssl_error","status_checked_at":"2026-02-14T05:24:34.830Z","response_time":53,"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":[],"created_at":"2024-11-05T15:06:24.379Z","updated_at":"2026-02-14T06:32:58.139Z","avatar_url":"https://github.com/FusionAuth.png","language":"FreeMarker","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Quickstart: Flutter app with FusionAuth\n\nThis repository contains a Flutter app that works with a public accessible FusionAuth instance or a locally running instance of [FusionAuth](https://fusionauth.io/) that has been configured to be accessible via ngrok.\n\n## Setup\n\n### Prerequisites\n- [Flutter](https://docs.flutter.dev/get-started/install)\n- [Docker](https://www.docker.com): The quickest way to stand up FusionAuth.\n  - (Alternatively, you can [Install FusionAuth Manually](https://fusionauth.io/docs/v1/tech/installation-guide/)).\n- [Visual Stuido Code](https://code.visualstudio.com/download): The editor for making changes to code.\n  - Alternatively, You can user other editors as well.\n\n\n### FusionAuth Installation via Docker\n\nThe root of this project directory (next to this README) are two files [a Docker compose file](./docker-compose.yml) and an [environment variables configuration file](./.env). Assuming you have Docker installed on your machine, you can stand up FusionAuth on your machine with:\n\n```\ndocker compose up -d\n```\n\nThe FusionAuth configuration files also make use of a unique feature of FusionAuth, called [Kickstart](https://fusionauth.io/docs/v1/tech/installation-guide/kickstart): when FusionAuth comes up for the first time, it will look at the [Kickstart file](./kickstart/kickstart.json) and mimic API calls to configure FusionAuth for use when it is first run. \n\n\u003e **NOTE**: If you ever want to reset the FusionAuth system, delete the volumes created by docker-compose by executing `docker compose down -v`. \n\nFusionAuth will be initially configured with these settings:\n\n* Your client Id is: `e9fdb985-9173-4e01-9d73-ac2d60d1dc8e`\n* Your client secret is: `super-secret-secret-that-should-be-regenerated-for-production`\n* Your example username is `richard@example.com` and your password is `password`.\n* Your admin username is `admin@example.com` and your password is `password`.\n* Your fusionAuthBaseUrl is 'http://localhost:9011/'\n\nYou can log into the [FusionAuth admin UI](http://localhost:9011/admin) and look around if you want, but with Docker/Kickstart you don't need to.\n\n### Set Up A Public URL for FusionAuth\n\nThe command below makes use of [ngrok](https://ngrok.com/download). You may need to install the tool if you do not have it available on your machine ( learn more [here](https://fusionauth.io/docs/v1/tech/developer-guide/exposing-instance))\n\n```\nngrok http 9011\n```\n\n### Flutter complete-application\n\nThe `complete-application` directory contains a minimal Flutter app configured to authenticate with a publicly accessible FusionAuth instance.\n\nTo run the application:\n* Ensure the FusionAuth server is running as noted above or update the variable `FUSIONAUTH_DOMAIN` in `main.dart` to reflect the FusionAuth server you are using.\n* Open iOS simulator or an Android emulator.\n\n```\ncd complete-application\nflutter pub get\nflutter run -d all\n```\n\nUpon clicking the login button you will be redirected to your FusionAuth instance's login page.\nYou can login with a user preconfigured during Kickstart, `richard@example.com` with the password of `password`.\n\n### Further Information\n\nVisit https://fusionauth.io/docs/quickstarts/quickstart-flutter-native for a step by step guide on how to build this Flutter app integrated with FusionAuth from scratch.\n\n### Troubleshooting\n\n* I get `Error retrieving discovery document: A server with the specified hostname could not be found` when I click the Login button\n\nEnsure FusionAuth is running on a publicly accessible URL and that the `FUSIONAUTH_DOMAIN` variable in `main.dart` is set to the correct URL of your FusionAuth inastance.\n\n\n* I get `Resolving dependencies... Because flutterdemo requires SDK version \u003e=3.0.0 \u003c4.0.0, version solving failed.`\n\nEnsure the dart version is greater than 3.0.0 by running \n\n```\nflutter upgrade\n```","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffusionauth%2Ffusionauth-quickstart-flutter-native","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffusionauth%2Ffusionauth-quickstart-flutter-native","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffusionauth%2Ffusionauth-quickstart-flutter-native/lists"}