network_monitoring 2.1.0
network_monitoring: ^2.1.0 copied to clipboard
Simple Package for Real-time HTTP network monitoring for Flutter apps with breakpoints, dev mode, and a floating overlay.
Changelog #
All notable changes to this package are documented in this file.
2.1.0 - 2026-06-05 #
Added #
enabledflag onNetworkMonitoringConfig(defaulttrue) to disable monitoring, dev mode, overlay, and the Dio interceptor in one place — useful for gating the package behindkDebugModeor a feature flag
2.0.0 - 2026-06-05 #
Changed #
- Breaking: Share actions now use a required
shareContentcallback onNetworkMonitoringConfiginstead of a built-inshare_plusdependency — host apps wire their own share plugin (we avoid depending on third-party packages like [share_plus] or [platform_channels] to keep the package lightweight, and avoidresolving dependencieserrors in the future.) - Breaking:
NetworkMonitoring.initialize()requires an explicitNetworkMonitoringConfig(no default config) - Declared platform support for Android, iOS, Linux, macOS, and Windows only (web is not supported)
- Migrated
RadioListTileusage toRadioGroupfor Flutter 3.35+ compatibility
Removed #
- Breaking:
share_plusdependency removed from the package
1.0.1 - 2026-06-03 #
Changed #
- Improved pub.dev package description
- Added pub.dev topics for better discoverability:
dio,network,monitoring,debug,dev-mode
1.0.0 - 2026-06-03 #
Initial release.
Added #
- Dio interceptor that records requests, responses, and errors while monitoring is enabled
- Floating draggable overlay with live request count and paused-request badge
- Request inspector with search, method filters, and tabbed detail views (overview, request, response, JWT)
- Breakpoints to pause matching traffic, edit headers/body, then continue or cancel
- Global pause/resume for all in-flight HTTP traffic
- JWT decoding for
Authorizationandx-auth-tokenheaders in the detail view - Copy and share actions for URL, headers, body, tokens, and full request dumps
- Hidden dev mode unlock via
VersionTapDetectoror customrequestEnableDevModeflows NetworkMonitoringBuilderfor reactive UI driven byNetworkMonitorChangesDevModeOptionsViewfor dev settings- English and Arabic localizations
- Example notes app (
example/) demonstrating Dio integration, JWT auth, and dev-mode unlock