{"id":13534105,"url":"https://github.com/appwrite/playground-for-flutter","last_synced_at":"2025-07-21T09:04:08.011Z","repository":{"id":38325731,"uuid":"254143799","full_name":"appwrite/playground-for-flutter","owner":"appwrite","description":"Simple examples that help you get started with Appwrite + Flutter (=❤️)","archived":false,"fork":false,"pushed_at":"2025-07-21T03:43:03.000Z","size":602,"stargazers_count":124,"open_issues_count":0,"forks_count":39,"subscribers_count":18,"default_branch":"master","last_synced_at":"2025-07-21T05:36:10.413Z","etag":null,"topics":["appwrite","baas","flutter","hacktoberfest"],"latest_commit_sha":null,"homepage":"https://appwrite.io","language":"C++","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/appwrite.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,"zenodo":null}},"created_at":"2020-04-08T16:35:37.000Z","updated_at":"2025-07-21T03:43:08.000Z","dependencies_parsed_at":"2024-01-14T02:33:25.072Z","dependency_job_id":"23a30efa-2975-4e21-a6f2-a6887f2dbae9","html_url":"https://github.com/appwrite/playground-for-flutter","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/appwrite/playground-for-flutter","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/appwrite%2Fplayground-for-flutter","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/appwrite%2Fplayground-for-flutter/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/appwrite%2Fplayground-for-flutter/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/appwrite%2Fplayground-for-flutter/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/appwrite","download_url":"https://codeload.github.com/appwrite/playground-for-flutter/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/appwrite%2Fplayground-for-flutter/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":266270391,"owners_count":23902731,"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":["appwrite","baas","flutter","hacktoberfest"],"created_at":"2024-08-01T07:01:26.461Z","updated_at":"2025-07-21T09:04:08.004Z","avatar_url":"https://github.com/appwrite.png","language":"C++","readme":"# Appwrite's Flutter Playground 🎮\n\nAppwrite playground is a simple way to explore the Appwrite API \u0026 Appwrite Flutter SDK. Use the source code of this page to learn how to use the different Appwrite Flutter SDK features.\n\nThis is Appwrite Flutter integration. For Dart server side integration please look at our [Dart Playground](https://github.com/appwrite/playground-for-dart) and [Dart SDK](https://github.com/appwrite/sdk-for-dart)\n\n![Appwrite Playground](preview.png)\n\n## Get Started\n\nThe `lib/main.dart` file in this repository contains **all** the playground examples and source code.\n\nYou can learn how to to integrate your Appwrite Flutter SDK in your project and see how different features of the SDK can be used.\n\nThis playground doesn't include any Appwrite best practices but rather intended to show the most simple examples and use cases of using the Appwrite API in your app.\n\n### Setup\n\nWe recommend using the [Appwrite CLI](https://appwrite.io/docs/command-line) to setup your Appwrite project.\n\n1. Create a Project in the Appwrite Console with ID `playground-for-flutter`. If you're using a different Project ID, make sure to use the same ID in the following commands, the `appwrite.json`, and `android/app/src/main/AndroidManifest.xml`.\n2. Create a Flutter Platform for each platform you'd like to test:\n\n   ```bash\n   appwrite projects createPlatform --projectId playground-for-flutter --type flutter-ios --name \"io.appwrite.playgroundForFlutter\" --key \"io.appwrite.playgroundForFlutter\"\n   appwrite projects createPlatform --projectId playground-for-flutter --type flutter-android --name \"io.appwrite.playground_for_flutter\" --key \"io.appwrite.playground_for_flutter\"\n   appwrite projects createPlatform --projectId playground-for-flutter --type flutter-macos --name \"io.appwrite.playgroundForFlutter\" --key \"io.appwrite.playgroundForFlutter\"\n   appwrite projects createPlatform --projectId playground-for-flutter --type flutter-windows --name \"playground_for_flutter\" --key \"playground_for_flutter\"\n   appwrite projects createPlatform --projectId playground-for-flutter --type flutter-linux --name \"playground_for_flutter\" --key \"playground_for_flutter\"\n   ```\n\n3. Use the Appwrite CLI to deploy the Database and Collection:\n\n   ```bash\n   appwrite deploy collection --all --yes\n   ```\n\n4. Use the Appwrite CLI to deploy the Bucket:\n\n   ```bash\n   appwrite deploy bucket --all --yes\n   ```\n\n5. Use the Appwrite CLI to create the test user:\n\n   ```bash\n   appwrite users create --email \"user@appwrite.io\" --password \"password\" --name \"Test User\"\n   ```\n\n6. Create `lib/constants.dart` using `lib/constants.dart.example` as a template.\n\n## Contributing\n\nAll code contributions - including those of people having commit access - must go through a pull request and approved by a core developer before being merged. This is to ensure proper review of all the code.\n\nWe truly ❤️ pull requests! If you wish to help, you can learn more about how you can contribute to this project in the [contribution guide](https://github.com/appwrite/appwrite/blob/master/CONTRIBUTING.md).\n\n## Security\n\nFor security issues, kindly email us [security@appwrite.io](mailto:security@appwrite.io) instead of posting a public issue in GitHub.\n\n## Follow Us\n\nJoin our growing community around the world! Follow us on [Twitter](https://twitter.com/appwrite), [Facebook Page](https://www.facebook.com/appwrite.io), [Facebook Group](https://www.facebook.com/groups/appwrite.developers/) or join our [Discord Server](https://appwrite.io/discord) for more help, ideas and discussions.\n","funding_links":[],"categories":["Playgrounds and Snippets","C++"],"sub_categories":[".NET"],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fappwrite%2Fplayground-for-flutter","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fappwrite%2Fplayground-for-flutter","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fappwrite%2Fplayground-for-flutter/lists"}