PUBDEV
speech_kit v0.0.1
Native Dart bindings for Apple Speech (SpeechAnalyzer, SpeechTranscriber, AssetInventory) using Dart Build Hooks.
PUBDEV
scrollable_form v0.0.1
A Flutter Form wrapper that auto scrolls to the first invalid field when form validation fails.
PUBDEV
abtasty_qa_assistant v1.0.0
Flutter package providing quality assurance tools and utilities for ABTasty testing workflows.
PUBDEV
eval v0.0.2
Pure Dart LLM evaluation helpers for tests, including judge-based matchers, RAG scoring, and statistics.
PUBDEV
rigorously v0.0.1
Automated research quality assurance. Verification-gated task registry, citation verification, reproducibility checks. Trust nothing, verify everything.
PUBDEV
patrol_mcp v0.1.1
An MCP server that empowers AI assistants to control, automate, and monitor interactive Patrol development sessions in Flutter.
REDDIT
"Colorfull" now comes with SKILL.md to build and use color palettes.
Currently using it with Claude to discuss and easily generate color palettes based on PRDs that I make. Also available on pub.dev.
REDDIT
Flutter Tips - Adding Time Advanced Understanding
Did you know that final date = DateTime(2025,10,26,0,0,0); final datePlus1 = date.add(const Duration(days: 1)); and final date = DateTime(2025,10,26,0,0,0); final datePlusOneDay = DateTime(date.year, ...
REDDIT
What state management do you use for large-scale flutter applications?
I am creating a flutter app for that project I need a better state management so I have two options bloc or riverpod. which one is more suitable for large-scale applications?
REDDIT
[Package] Nested Scrollables
Hello ! I had to tinker a bit with nested scrolling on an app i'm working on, and i didn't find a good solution to my needs with existing packages, so I made one, mainly to improve interaction between...