Skip to content

Latest commit

 

History

History
32 lines (26 loc) · 1.09 KB

README.md

File metadata and controls

32 lines (26 loc) · 1.09 KB

Flutter Network Capture

Flutter developer、test network debugging tools,Easily view HTTPS requests

Usage

dependencies:
    network_capture: ^latest_version
  • Change your App to NetworkCaptureApp
void main() {
  runApp(NetworkCaptureApp(
    enable: true,
    navigatorKey: navigatorKey,
    child: const MyApp(),
  ));
}
  • Add CaptureDioInterceptor to Dio interceptors
dio.interceptors.add(CaptureDioInterceptor());

Important! It is prohibited to use it in a release environment. We will not be responsible for any problems that arise.