A Flutter package that inspects http call requests, responses which made by dio package. This package show notifications on each call and UI screen.
- Show notification on each http call
- Show history http call list, and call detail in UI screen
- Copy http call detail to clipboard
- Export http call to postman format or open api
This package works with dio package
dependencies:
e_http_inspector: ^1.1.0
- Init EHttpInspector
void main() {
EHttpInspector.init(_dio, _navigatorKey, "EHttpInspector", "EHttpInspector",
"EHttpInspector channel");
runApp(const MyApp());
}
or init inspector and notification
var _dio = Dio();
EHttpInspector.initInterceptor(_dio);
...
await EHttpInspector.initNotification(_navigatorKey, "Your channel key", "Your channel name", "You channel description");
- Make sure
_navigatorKey
which is used in root MaterialApp.navigatorKey
MaterialApp(navigatorKey: _navigatorKey);
- For other push notification setup please follow this plugin
Create issues and add appropriate label on Github issues or into our mailing list For more detail see CONTRIBUTING
- Justin Lewis (Maintainer)
- Chau VP (Developer)