{"id":48381178,"url":"https://github.com/amadejkastelic/goals","last_synced_at":"2026-04-05T20:04:44.142Z","repository":{"id":344897256,"uuid":"1175465085","full_name":"amadejkastelic/goals","owner":"amadejkastelic","description":"Goal tracking Flutter app","archived":false,"fork":false,"pushed_at":"2026-03-27T20:28:08.000Z","size":901,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-03-28T02:44:27.331Z","etag":null,"topics":["dart","flutter","mobile","vibe-coded"],"latest_commit_sha":null,"homepage":"https://amadejk.com","language":"Dart","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/amadejkastelic.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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,"notice":null,"maintainers":null,"copyright":null,"agents":"AGENTS.md","dco":null,"cla":null}},"created_at":"2026-03-07T18:45:26.000Z","updated_at":"2026-03-27T20:28:12.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/amadejkastelic/goals","commit_stats":null,"previous_names":["amadejkastelic/goals"],"tags_count":4,"template":false,"template_full_name":null,"purl":"pkg:github/amadejkastelic/goals","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/amadejkastelic%2Fgoals","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/amadejkastelic%2Fgoals/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/amadejkastelic%2Fgoals/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/amadejkastelic%2Fgoals/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/amadejkastelic","download_url":"https://codeload.github.com/amadejkastelic/goals/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/amadejkastelic%2Fgoals/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31448219,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-05T15:22:31.103Z","status":"ssl_error","status_checked_at":"2026-04-05T15:22:00.205Z","response_time":75,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5: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","flutter","mobile","vibe-coded"],"created_at":"2026-04-05T20:04:14.237Z","updated_at":"2026-04-05T20:04:44.136Z","avatar_url":"https://github.com/amadejkastelic.png","language":"Dart","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Goals\n\nA privacy-first Flutter app for tracking personal goals with daily journal entries. All data is stored locally on your device using SQLite -- no account or internet connection required.\n\n## Features\n\n- **Goal tracking** -- Create goals with a title, description, category, and set duration (in days). Track status: active, paused, completed, or abandoned.\n- **Daily journal** -- Log daily progress with text, an emoji mood, and media attachments (images, audio, video).\n- **Categories** -- Organize goals with predefined and custom categories.\n- **Custom fields** -- Add your own structured fields to journal entries.\n- **Fasting tracker** -- Built-in intermittent fasting timer with configurable protocols.\n- **Health integration** -- Import health data from connected sources.\n- **MyFitnessPal import** -- Fetch and view nutrition data from MyFitnessPal.\n- **Reminders** -- Local notifications to keep you on track with your goals.\n- **Theming** -- Material You dynamic colors, light/dark mode, with manual theme selection.\n- **Offline-first** -- Everything works without an internet connection. No sign-up required.\n\n## Screenshots\n\nTODO\n\n## Tech Stack\n\n- **Flutter** 3.11+ (Dart SDK ^3.11.0)\n- **SQLite** via [sqflite](https://pub.dev/packages/sqflite) / [sqflite_common_ffi](https://pub.dev/packages/sqflite_common_ffi) (desktop)\n- **Provider** for state management\n- **Material 3** with [dynamic_color](https://pub.dev/packages/dynamic_color)\n- Local notifications via [flutter_local_notifications](https://pub.dev/packages/flutter_local_notifications)\n\n## Getting Started\n\n### Prerequisites\n\n- Flutter SDK 3.11 or newer\n- A connected device or emulator (Android, iOS, Linux, macOS, Windows, or Web)\n\n### Install dependencies\n\n```bash\nflutter pub get\n```\n\n### Run the app\n\n```bash\nflutter run\n```\n\n### Run tests\n\n```bash\nflutter test\n```\n\n### Analyze code\n\n```bash\nflutter analyze\n```\n\n### Build APK\n\n```bash\nflutter build apk\n```\n\n## Project Structure\n\n```\nlib/\n  main.dart                  # App entry point, providers setup\n  models/                    # Data models\n    category.dart\n    custom_field_definition.dart\n    custom_field_value.dart\n    fasting_protocol.dart\n    fasting_session.dart\n    goal.dart\n    health_data.dart\n    journal_entry.dart\n    media_attachment.dart\n    mfp_nutrition.dart\n  db/                        # SQLite database helper\n  data/                      # Data layer\n  providers/                 # Provider state management\n    categories_provider.dart\n    custom_fields_provider.dart\n    fasting_provider.dart\n    goals_provider.dart\n    journal_provider.dart\n    notification_provider.dart\n    theme_provider.dart\n  screens/                   # App screens\n    categories_screen.dart\n    goal_detail_screen.dart\n    goal_form_screen.dart\n    health_import_screen.dart\n    home_screen.dart\n    journal_entry_screen.dart\n    settings_screen.dart\n  services/                  # Platform services\n    health_service.dart\n    notification_service.dart\n  theme/\n    app_theme.dart\n  utils/                     # Utility functions\n  widgets/                   # Reusable UI components\n    custom_field_editor.dart\n    custom_field_input.dart\n    fasting_summary_card.dart\n    goal_card.dart\n    health_data_tile.dart\n    journal_day_tile.dart\n    media_gallery.dart\n    mfp_nutrition_tile.dart\n    status_widgets.dart\n```\n\n## Data Storage\n\nAll data is stored locally in a SQLite database file (`goals.db`) located in the app's documents directory. Media attachments are stored as BLOBs. No data leaves your device.\n\n## License\n\nThis project is licensed under the [GNU General Public License v3.0](LICENSE).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Famadejkastelic%2Fgoals","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Famadejkastelic%2Fgoals","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Famadejkastelic%2Fgoals/lists"}