Last updated:
0 purchases
e http inspector
e_http_inspector #
A Flutter package that inspects http call requests, responses which made by dio package. This package show notifications on each call and UI screen.
Features #
Show notification on each http call
Show history http call list, and call detail in UI screen
Copy http call detail to clipboard
Under construction:
Export http call to postman format or open api
Getting Started #
This package works with dio package
Usage #
Add dependencies #
dependencies:
e_http_inspector: ^1.1.0
copied to clipboard
Config and use in application #
Init EHttpInspector
void main() {
EHttpInspector.init(_dio, _navigatorKey, "EHttpInspector", "EHttpInspector",
"EHttpInspector channel");
runApp(const MyApp());
}
copied to clipboard
or init inspector and notification
var _dio = Dio();
EHttpInspector.initInterceptor(_dio);
...
await EHttpInspector.initNotification(_navigatorKey, "Your channel key", "Your channel name", "You channel description");
copied to clipboard
Make sure _navigatorKey which is used in root MaterialApp.navigatorKey
MaterialApp(navigatorKey: _navigatorKey);
copied to clipboard
For other push notification setup please follow this plugin
Issues and feedback #
Create issues and add appropriate label on Github issues or into our mailing list
For more detail see CONTRIBUTING
Contributor #
Justin Lewis (Maintainer)
Chau VP (Developer)
License #
MIT
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.