{"id":30201591,"url":"https://github.com/mukhbit0/sugar_fast","last_synced_at":"2026-04-16T03:32:47.498Z","repository":{"id":308973037,"uuid":"1034759381","full_name":"mukhbit0/sugar_fast","owner":"mukhbit0","description":"Sugar Fast is a modular, high-performance Flutter UI framework that provides drop-in replacements for standard widgets (Text, Container, Icon, Button, Image, ListTile) with up to 20x faster paint-only updates. Features full Material Design compliance, Riverpod integration, and a maintainable, scalable architecture.","archived":false,"fork":false,"pushed_at":"2025-08-10T16:54:31.000Z","size":427,"stargazers_count":0,"open_issues_count":1,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-03-24T07:44:46.368Z","etag":null,"topics":["custom-widgets","dart","flutter","high-performance","ionic-errrrs-code","material-design","modular","open-source","perfomance","riverpod","state-management","sugar-fast","ui","widgets"],"latest_commit_sha":null,"homepage":"https://pub.dev/packages/sugar_fast","language":"Dart","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/mukhbit0.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":".github/FUNDING.yml","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},"funding":{"github":null,"patreon":null,"open_collective":null,"ko_fi":null,"tidelift":null,"community_bridge":null,"liberapay":null,"issuehunt":null,"lfx_crowdfunding":null,"polar":null,"buy_me_a_coffee":"mukhbit","thanks_dev":null,"custom":null}},"created_at":"2025-08-08T23:59:28.000Z","updated_at":"2025-08-10T16:54:34.000Z","dependencies_parsed_at":"2025-08-09T02:23:30.209Z","dependency_job_id":"f1d920df-3f9c-4bd0-ab1d-422bd1475aad","html_url":"https://github.com/mukhbit0/sugar_fast","commit_stats":null,"previous_names":["mukhbit0/sugar_fast"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/mukhbit0/sugar_fast","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mukhbit0%2Fsugar_fast","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mukhbit0%2Fsugar_fast/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mukhbit0%2Fsugar_fast/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mukhbit0%2Fsugar_fast/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mukhbit0","download_url":"https://codeload.github.com/mukhbit0/sugar_fast/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mukhbit0%2Fsugar_fast/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31870508,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-15T15:24:51.572Z","status":"online","status_checked_at":"2026-04-16T02:00:06.042Z","response_time":69,"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":["custom-widgets","dart","flutter","high-performance","ionic-errrrs-code","material-design","modular","open-source","perfomance","riverpod","state-management","sugar-fast","ui","widgets"],"created_at":"2025-08-13T10:50:55.132Z","updated_at":"2026-04-16T03:32:47.481Z","avatar_url":"https://github.com/mukhbit0.png","language":"Dart","funding_links":["https://buymeacoffee.com/mukhbit"],"categories":[],"sub_categories":[],"readme":"# 🍭 Sugar Fast - Flutter Development Hub\n\n[![pub package](https://img.shields.io/pub/v/sugar_fast.svg)](https://pub.dev/packages/sugar_fast)\n[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)\n[![Flutter](https://img.shields.io/badge/Flutter-3.0%2B-blue.svg)](https://flutter.dev)\n[![Dart](https://img.shields.io/badge/Dart-3.0%2B-blue.svg)](https://dart.dev)\n\n**Sugar Fast** is a comprehensive meta-package that brings together the entire Sugar ecosystem for super-fast Flutter development. Instead of managing multiple dependencies, install once and get access to everything you need.\n\n## 🎯 **One Package, Everything Included**\n\n```yaml\ndependencies:\n  sugar_fast: ^2.0.0  # Gets you EVERYTHING\n```\n\n```dart\nimport 'package:sugar_fast/sugar_fast.dart';  // One import for all Sugar features\n\nvoid main() {\n  SugarFast.initialize();\n  runApp(MyApp());\n}\n```\n\n## 🧩 **What's Included**\n\n| Package | Status | Description |\n|---------|--------|-------------|\n| 🍰 **Riverpod Sugar** | ✅ Available | Enhanced Riverpod utilities and helpers |\n| 🧩 **Sugar UI** | 🚧 Coming Soon | Pre-built, customizable widgets |\n| 🔗 **Sugar Connect** | 🚧 Coming Soon | HTTP/API utilities and networking |\n| 🎨 **Sugar Themer** | 🚧 Coming Soon | Advanced theming and styling system |\n| 🍰 **Sugar Slices** | 🚧 Coming Soon | Enhanced Riverpod state management |\n\n## 🚀 **Quick Start**\n\n### 1. Install\n\n```bash\nflutter pub add sugar_fast\n```\n\n### 2. Initialize\n\n```dart\nimport 'package:sugar_fast/sugar_fast.dart';\nimport 'package:flutter/foundation.dart';\n\nvoid main() {\n  SugarFast.initialize(\n    devMode: kDebugMode,\n  );\n  runApp(MyApp());\n}\n```\n\n### 3. Use Everything\n\n```dart\nclass MyWidget extends ConsumerWidget {\n  @override\n  Widget build(BuildContext context, WidgetRef ref) {\n    // Use Riverpod Sugar (currently available)\n    final user = ref.watch(userProvider);\n    \n    // Coming soon: Use other Sugar packages\n    // return SugarCard(child: ...);        // Sugar UI\n    // return SugarTheme.dark(child: ...);  // Sugar Themer\n    // ApiClient.get('/users');             // Sugar Connect\n    \n    return Text('Hello ${user.name}');\n  }\n}\n```\n\n## 🎛️ **Individual Packages (Advanced Users)**\n\nNeed fine-grained control? Install individual packages:\n\n```yaml\ndependencies:\n  riverpod_sugar: ^1.0.9     # State management only\n  # sugar_ui: ^1.0.0         # UI components only (coming soon)\n  # sugar_connect: ^1.0.0    # API utilities only (coming soon)\n  # sugar_themer: ^1.0.0     # Theming only (coming soon)\n```\n\n## 📚 **Documentation**\n\n- **[Riverpod Sugar Docs](https://pub.dev/packages/riverpod_sugar)** - Available now\n- **Sugar UI Docs** - Coming soon\n- **Sugar Connect Docs** - Coming soon  \n- **Sugar Themer Docs** - Coming soon\n\n## 🗺️ **Development Roadmap**\n\n### Phase 1 - State Management ✅\n- [x] Riverpod Sugar integration\n- [x] Hub package structure\n- [x] Unified initialization\n\n### Phase 2 - UI Components 🚧\n- [ ] Sugar UI package\n- [ ] Pre-built widgets\n- [ ] Customizable components\n\n### Phase 3 - Networking \u0026 APIs 🚧\n- [ ] Sugar Connect package\n- [ ] HTTP utilities\n- [ ] API helpers\n\n### Phase 4 - Theming \u0026 Design 🚧\n- [ ] Sugar Themer package\n- [ ] Advanced theming system\n- [ ] Design tokens\n\n## 🌟 **Why Use Sugar Fast?**\n\n### **Single Dependency**\nInstead of managing multiple packages, add one dependency and get access to the entire Sugar ecosystem.\n\n### **Unified API**\nAll Sugar packages work together seamlessly with consistent APIs and patterns.\n\n### **Future-Proof**\nAs new Sugar packages are released, they're automatically included in Sugar Fast updates.\n\n### **Optional Granularity**\nNeed fine control? You can still install individual packages separately.\n\n## 📦 **Package Details**\n\n### **Current Size**\n- **Riverpod Sugar**: Enhanced state management utilities\n\n### **Coming Soon**\n- **Sugar UI**: Pre-built, customizable widgets for common use cases\n- **Sugar Connect**: HTTP/API utilities with built-in error handling\n- **Sugar Themer**: Advanced theming system with design tokens\n- **Sugar Slices**: Enhanced Riverpod state management patterns\n\n## 🤝 **Contributing**\n\nWe welcome contributions to the Sugar ecosystem! Each package has its own repository:\n\n- **sugar_fast** (this hub): [mukhbit0/sugar_fast](https://github.com/mukhbit0/sugar_fast)\n- **riverpod_sugar**: [Contribute here](https://pub.dev/packages/riverpod_sugar)\n- More packages coming soon...\n\n### **Contribution Guidelines**\n1. Fork the repository\n2. Create a feature branch\n3. Make your changes\n4. Add tests if applicable\n5. Submit a pull request\n\n## 📄 **License**\n\nMIT License - see [LICENSE](LICENSE) for details.\n\n## 🔗 **Links**\n\n- [Pub.dev Package](https://pub.dev/packages/sugar_fast)\n- [GitHub Repository](https://github.com/mukhbit0/sugar_fast)\n- [Issue Tracker](https://github.com/mukhbit0/sugar_fast/issues)\n- [Changelog](CHANGELOG.md)\n\n---\n\n\u003cp align=\"center\"\u003e\n  \u003cstrong\u003eBuilt with ❤️ for the Flutter community\u003c/strong\u003e\u003cbr\u003e\n  Making Flutter development faster, one package at a time.\n\u003c/p\u003e\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmukhbit0%2Fsugar_fast","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmukhbit0%2Fsugar_fast","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmukhbit0%2Fsugar_fast/lists"}