flutter_debug_badges 0.1.4
flutter_debug_badges: ^0.1.4 copied to clipboard
Debug overlay & section marker badges for Flutter apps. Shows route info and section markers in debug mode with optional Dev Pilot integration.
0.1.4 #
- Fix: Compatibility with go_router v12+ — replaced
GoRouter.state.matchedLocationwithGoRouterState.of(context).matchedLocationso the package passes pub.dev's downgrade analysis test when resolving at minimum dependency constraints.
0.1.3 #
- Meta: Fixed repository URLs in pubspec.yaml (
adibagaspratama→adibagasp23). - Meta: Added
analysis_options.yamlwith best-practice lint rules. - Meta: Added complete
example/directory with runnable Flutter app. - Docs: Added comprehensive dartdoc comments for all public APIs in English.
- Docs: Improved README with feature badges, quick start, and API table.
- Deps: Updated
go_routerconstraint to>=12.0.0 <18.0.0for broader compatibility.
0.1.2 #
- Improvement: Added deduplication for section logs — each file name prints
only once per page navigation via
HashSet. - Feature: Added
DebugSection.resetPrinted()to clear log history for fresh section markers on route changes. - Feature:
DebugOverlayautomatically callsresetPrinted()on route change, ensuring section markers reset per page. - Improvement: Added
addPostFrameCallbackfor safersetStatetiming in the overlay update cycle. - Improvement: Changed log prefixes to emoji format (
[📁 Overlay]and[📄 Section]) for better console readability. - Docs: Added comprehensive dartdoc comments for all public APIs.
- Docs: Improved README with feature badges, quick start, and API table.
- Meta: Added
analysis_options.yamlwith best-practice lint rules. - Meta: Added complete
example/directory with runnable Flutter app. - Meta: Updated
go_routerconstraint to>=12.0.0 <18.0.0for broader compatibility. - Meta: Fixed repository URLs in pubspec.yaml (adibagaspratama → adibagasp23).
0.1.1 #
- Docs: Improved README with full documentation, marker format table, and Dev Pilot integration guide.
- Meta: Added
topicsto pubspec.yaml for better pub.dev discoverability.
0.1.0 #
Initial release.
- Feature:
DebugOverlaywidget — shows route + file name in a top bar with Dev Pilot integration. - Feature:
DebugSectionwidget — wraps child widgets and prints section markers for Dev Pilot badges. - Feature:
DebugOverlay.setPageHint()for tabs/sub-pages sharing the same route. - Feature: Custom
routeFileMapsupport for route-to-file name mapping.