api_track_inspector 1.1.13
api_track_inspector: ^1.1.13 copied to clipboard
Flutter network inspector for debug builds with GetConnect interceptors, manual Dio/http logging, and an in-app request viewer.
Changelog #
All notable changes to this package will be documented in this file.
1.1.13 #
- Replaced
doc/screenshotswith the images from the latest author-provided captures: list export, WhatsApp 8:15 PM (request/response body view, JWT strip redacted), and WhatsApp 6:34 PM (403 + headers, Authorization redacted).
1.1.12 #
- Updated
doc/screenshots/from the latest captures: request list, success detail (sanitized URL + Bearer via blur), and error detail; scaled the detail shot to match list/error dimensions for the README table.
1.1.11 #
- Refreshed pub.dev screenshots (
request_list,request_details,request_error); removed local preview copies from the package tree.
1.1.10 #
- README: three pub.dev screenshots (list, success details, error details); full URL and
Authorization/ Bearer values redacted in detail shots. - Added
doc/screenshots/request_error.pngfor the error/403 flow.
1.1.9 #
- README: show screenshots in a compact two-column table (similar layout to other inspector packages on pub.dev).
- Removed the demo video from the README and dropped
doc/demo.mp4from the published package to keep the page and tarball smaller.
1.1.8 #
- Added README screenshots and a demo video (
doc/screenshots/,doc/demo.mp4). - Documented pub.dev-friendly image URLs via
raw.githubusercontent.com.
1.1.7 #
- Simplified
example/app to focus on the two most common integrations: Dio andpackage:http. - Removed GetConnect flow from the live example to reduce onboarding complexity.
- Kept logging flow explicit with
logRequestandlogResponseso developers can copy and adapt quickly.
1.1.6 #
- Improved README with a stronger quick-start section and clearer developer onboarding.
- Added a top-level AI quick prompt for faster integration.
- Added explicit flavor-based setup examples using
NetworkInspector.init(enabled: AppConfig.isDev). - Simplified real-app integration guidance with a framework-agnostic
MaterialAppbuilder pattern.
1.1.5 #
- Publishing prep release for pub.dev.
- Added in-app network inspector dialog with draggable FAB overlay.
- Added GetConnect integration helpers via
onRequestandonResponse. - Added manual logging APIs for other clients:
logRequestandlogResponse. - Added JSON export and log sharing support.
- Added comprehensive README integration guides and an
example/app.