flipper_util 0.0.4 copy "flipper_util: ^0.0.4" to clipboard
flipper_util: ^0.0.4 copied to clipboard

flutter plugin for flipperUtil

flipper_util #

flutter plugin for flipperUtil

  • Dio interceptor : report http info to flipper client in android

Getting Started #

dio interceptor #

 Dio dio = Dio();
//add the FlipperKitDioInterceptor as the last interceptor
dio.interceptors.add(FlipperKitDioInterceptor(topRouter: (){
  //return the top router name ,it will display in request headers
    return "page/topTest";
  }))

image-20220929143528503