Last updated:
0 purchases
network capture
Flutter Network Capture #
Flutter developer、test network debugging tools,Easily view HTTPS requests #
Usage #
Add dependencies latest_version
dependencies:
network_capture: ^latest_version
copied to clipboard
Change your App to NetworkCaptureApp
void main() {
runApp(NetworkCaptureApp(
enable: true,
navigatorKey: navigatorKey,
child: const MyApp(),
));
}
copied to clipboard
Add CaptureDioInterceptor to Dio interceptors
dio.interceptors.add(CaptureDioInterceptor());
copied to clipboard
Important! It is prohibited to use it in a release environment. We will not be responsible for any problems that arise. #
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.