{"id":16213849,"url":"https://github.com/solygambas/flutter-projects","last_synced_at":"2026-04-29T21:01:49.612Z","repository":{"id":102301099,"uuid":"413738947","full_name":"solygambas/flutter-projects","owner":"solygambas","description":"4 projects to understand Flutter basics.","archived":false,"fork":false,"pushed_at":"2022-05-01T05:07:54.000Z","size":5590,"stargazers_count":1,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-10-19T01:29:52.021Z","etag":null,"topics":["dart","firebase","firebase-auth","firestore","flutter"],"latest_commit_sha":null,"homepage":"","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/solygambas.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":"2021-10-05T08:44:30.000Z","updated_at":"2025-10-18T11:22:16.000Z","dependencies_parsed_at":"2023-05-01T19:42:54.128Z","dependency_job_id":null,"html_url":"https://github.com/solygambas/flutter-projects","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/solygambas/flutter-projects","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/solygambas%2Fflutter-projects","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/solygambas%2Fflutter-projects/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/solygambas%2Fflutter-projects/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/solygambas%2Fflutter-projects/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/solygambas","download_url":"https://codeload.github.com/solygambas/flutter-projects/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/solygambas%2Fflutter-projects/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32443576,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-29T20:22:27.477Z","status":"ssl_error","status_checked_at":"2026-04-29T20:22:26.507Z","response_time":110,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: 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":["dart","firebase","firebase-auth","firestore","flutter"],"created_at":"2024-10-10T11:08:47.382Z","updated_at":"2026-04-29T21:01:49.581Z","avatar_url":"https://github.com/solygambas.png","language":"C++","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Flutter Projects\n\n4 projects to understand Flutter basics.\n\n| #   | Project                             | Description                                             |\n| --- | ----------------------------------- | ------------------------------------------------------- |\n| 01  | [**Wordpair Generator**](#wordpair) | A quick intro to Flutter core concepts and Dart syntax. |\n| 02  | [**World Time**](#worldtime)        | A simple world clock application.                       |\n| 03  | [**Brew Crew**](#brewcrew)          | An app to collect brew preferences, using Firebase.     |\n| 04  | [**Ninja Trips**](#ninjatrips)      | A travel app to understand Flutter animations.          |\n\n## \u003ca name=\"wordpair\"\u003e\u003c/a\u003e 1) Wordpair Generator\n\nA quick intro to Flutter core concepts and Dart syntax.\n\n[See 01-wordpair folder](01-wordpair)\n\n\u003cp align=\"center\"\u003e\n    \u003ca href=\"01-wordpair\"\u003e\n        \u003cimg src=\"01-wordpair/screenshot.png\" style=\"width:528px;max-width: 100%;\"\u003e\n    \u003c/a\u003e\n\u003c/p\u003e\n\n### Features\n\n- adding [Dart](https://marketplace.visualstudio.com/items?itemName=Dart-Code.dart-code) and [Flutter](https://marketplace.visualstudio.com/items?itemName=Dart-Code.flutter) extensions in Visual Studio Code.\n- creating a layout with Scaffold.\n- adding a theme with ThemeData.\n- installing english_words package from [pub.dev](https://pub.dev/) as a dependency.\n- building a custom widget.\n- displaying generated words with ListView.\n- handling favorites with setState.\n- using the navigator to display saved word pairs.\n\nBased on [Flutter Crash Course](https://www.youtube.com/watch?v=1gDhl4leEzA) by Brad Taversy (2019).\n\n## \u003ca name=\"worldtime\"\u003e\u003c/a\u003e 2) World Time\n\nA simple world clock application.\n\n[See 02-world-time folder](02-world-time)\n\n\u003cp align=\"center\"\u003e\n    \u003ca href=\"02-world-time\"\u003e\n        \u003cimg src=\"02-world-time/screenshot.png\" style=\"width:528px;max-width: 100%;\"\u003e\n    \u003c/a\u003e\n\u003c/p\u003e\n\n### Features\n\n- creating several screens and handling routing.\n- understanding widget lifecycle.\n- writing asynchronous code with async, await and Futures.\n- working with the 'http' package to collect data from the World Time API.\n- creating a custom WorldTime class to handle API calls.\n- handling errors with try and catch blocks.\n- passing data between screens.\n- formatting time with the 'intl' package.\n- displaying a loading spinner with Flutter Spinkit.\n- using a ternary operator to handle light and dark modes.\n- choosing location with ListView.\n- updating the time.\n\nBased on [Flutter Tutorial for Beginners](https://www.youtube.com/watch?v=1ukSR1GRtMU\u0026list=PL4cUxeGkcC9jLYyp2Aoh6hcWuxFDX6PBJ) by Shaun Pelling - The Net Ninja (2019).\n\n## \u003ca name=\"brewcrew\"\u003e\u003c/a\u003e 3) Brew Crew\n\nAn app to collect brew preferences, using Firebase.\n\n[See 03-brew-crew folder](03-brew-crew)\n\n\u003cp align=\"center\"\u003e\n    \u003ca href=\"03-brew-crew\"\u003e\n        \u003cimg src=\"03-brew-crew/screenshot.png\" style=\"width:528px;max-width: 100%;\"\u003e\n    \u003c/a\u003e\n\u003c/p\u003e\n\n### Features\n\n- setting up Firebase in a Flutter app.\n- creating an authentication class with Firebase Auth.\n- handling anonymous sign in and sign out with a custom user model.\n- listening to auth stream with the Provider package.\n- building sign in and register forms.\n- toggling between forms.\n- registering and signing in with email and password.\n- adding a loading widget with Flutter Spinkit.\n- using Firestore database to store brew preferences for each user.\n- listening to database stream.\n- listing brew data.\n- handling user settings in a bottom sheet.\n- working with drop-downs and sliders.\n- using a stream builder and updating user data.\n\nBased on [Flutter \u0026 Firebase App Tutorial](https://www.youtube.com/playlist?list=PL4cUxeGkcC9j--TKIdkb3ISfRbJeJYQwC) by Shaun Pelling - The Net Ninja (2019).\n\n## \u003ca name=\"ninjatrips\"\u003e\u003c/a\u003e 4) Ninja Trips\n\nA travel app to understand Flutter animations.\n\n[See 04-ninja-trips folder](04-ninja-trips)\n\n\u003cp align=\"center\"\u003e\n    \u003ca href=\"04-ninja-trips\"\u003e\n        \u003cimg src=\"04-ninja-trips/screenshot.png\" style=\"width:528px;max-width: 100%;\"\u003e\n    \u003c/a\u003e\n\u003c/p\u003e\n\n### Features\n\n- setting up the Flutter starter project.\n- discovering built-in animations.\n- creating custom implicit animations with TweenAnimationBuilder.\n- animating widgets from one screen to another with Hero animations.\n- building an animation controller with Dart mixins.\n- combining animations with tween sequences.\n- handling animation speed with Curves.\n- staggering each list item.\n\nBased on [Flutter Animation Tutorial](https://www.youtube.com/playlist?list=PL4cUxeGkcC9gP1qg8yj-Jokef29VRCLt1) by Shaun Pelling - The Net Ninja (2020).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsolygambas%2Fflutter-projects","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsolygambas%2Fflutter-projects","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsolygambas%2Fflutter-projects/lists"}