{"id":23869177,"url":"https://github.com/extrawest/flutter_firebase_water_tracker","last_synced_at":"2026-04-19T06:38:41.989Z","repository":{"id":121938791,"uuid":"593993167","full_name":"extrawest/flutter_firebase_water_tracker","owner":"extrawest","description":"Flutter Water Tracker App With Firebase Services (Auth, Firestore, Cloud Messaging, Crashlytics, Remote Config)","archived":false,"fork":false,"pushed_at":"2023-01-27T10:52:56.000Z","size":212,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-10-13T15:39:48.371Z","etag":null,"topics":["analytics","cloud-messaging","crashlytics","dart","demo","firebase","firebase-auth","firebase-firestore","firebase-hosting","firestore","flutter","flutter-web","remote-config","water-tracker","web"],"latest_commit_sha":null,"homepage":"","language":"Dart","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/extrawest.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-01-27T10:42:15.000Z","updated_at":"2023-02-23T10:14:26.000Z","dependencies_parsed_at":null,"dependency_job_id":"fd42a937-2136-4dbd-8c8e-fef9a809171f","html_url":"https://github.com/extrawest/flutter_firebase_water_tracker","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/extrawest/flutter_firebase_water_tracker","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/extrawest%2Fflutter_firebase_water_tracker","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/extrawest%2Fflutter_firebase_water_tracker/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/extrawest%2Fflutter_firebase_water_tracker/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/extrawest%2Fflutter_firebase_water_tracker/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/extrawest","download_url":"https://codeload.github.com/extrawest/flutter_firebase_water_tracker/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/extrawest%2Fflutter_firebase_water_tracker/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279015935,"owners_count":26085777,"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","status":"online","status_checked_at":"2025-10-13T02:00:06.723Z","response_time":61,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["analytics","cloud-messaging","crashlytics","dart","demo","firebase","firebase-auth","firebase-firestore","firebase-hosting","firestore","flutter","flutter-web","remote-config","water-tracker","web"],"created_at":"2025-01-03T12:16:17.974Z","updated_at":"2025-10-13T15:39:50.160Z","avatar_url":"https://github.com/extrawest.png","language":"Dart","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Water tracker app 🚰\n\n[![Codemagic build status](https://api.codemagic.io/apps/63bb4ba82f6920dcb7c3647c/63bb4ba82f6920dcb7c3647b/status_badge.svg)](https://codemagic.io/apps/63bb4ba82f6920dcb7c3647c/63bb4ba82f6920dcb7c3647b/latest_build)\n[![Ask Me Anything !](https://img.shields.io/badge/Ask%20me-anything-1abc9c.svg)]()\n![GitHub license](https://img.shields.io/github/license/Naereen/StrapDown.js.svg)\n![GitHub release](https://img.shields.io/badge/release-v1.0.0-blue)\n[![View DEMO](https://img.shields.io/badge/VIEW-DEMO-lightgreen.svg)](https://user-images.githubusercontent.com/42183561/215068906-8dfd638f-4239-452d-bf11-a29520b07bf2.mp4)\n\n## Project info\n- This project is a water tracker app connected to Firebase.\n- The app is fully supported on iOS and Android.\n- The app is built using the Firebase authentication and Firestore database.\n- The app uses others Firebase Services such as Cloud Messaging, Crashlytics, Remote Config, etc.\n- The covered with Unit Tests, Widget Tests and Integration Tests.\n\n## Demo\nhttps://user-images.githubusercontent.com/42183561/215068906-8dfd638f-4239-452d-bf11-a29520b07bf2.mp4\n\n\n## How to run\n- Clone the project\n```shell\n$ git clone https://github.com/extrawest/flutter_firebase_water_tracker.git\n```\n- Install dependencies\n```shell\n$ flutter pub get\n```\n- Configure Firebase\n```shell\n $ flutterfire configure\n```\n- Run the app\n```shell\n$ flutter run\n```\n- Optional but highly recommended to setup pre-push hook\n    - Initialize git repository if you haven't already\n    ```shel\n        $ git init\n    ```\n    - add sh script to git hooks\n    ```shel\n        $ ln -s pre-push.sh .git/hooks/pre-push\n    ```\n\n## How to test\n- To run all test\n```shel\n$ flutter test\n```\n- To generate codecovarege:\n    - Run test with additional flag\n    ```shel\n    $ flutter test --coverage\n    ```\n  this results into **coverage/lcov.info** file creation\n    - Generate html file using previosly generated lcov file\n    ```shel\n    $ genhtml coverage/lcov.info -o coverage/html\n    ```\n    - Use **coverage/html/index html** to view current project's codecoverage\n- In order to run shader warm ups use:\n```shell\n$ flutter drive --profile --cache-sksl --write-sksl-on-exit sksl_shader01.json --driver=test_driver/integration_test.dart --target=integration_test/app_test.dart\n```\n\n#### Maintained by *Lesha Melnychenko*\n\n[Extrawest.com](https://www.extrawest.com), 2023\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fextrawest%2Fflutter_firebase_water_tracker","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fextrawest%2Fflutter_firebase_water_tracker","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fextrawest%2Fflutter_firebase_water_tracker/lists"}