lack_off_debug_logs 1.0.0 lack_off_debug_logs: ^1.0.0 copied to clipboard
A Flutter package for implementing a custom logging tool that captures global exceptions and network requests.
##简易的异常捕获以及dio请求日志显示窗口,支持Android、ios、鸿蒙
##使用步骤
//初始化
-
LackOff.initialize(const MyApp());
-
添加dio拦截器 dio.interceptors.add( PrettyDioLogger( request: true, requestHeader: true, responseHeader: true, responseBody: true, ), ); //显示button
-
LackOff.showLackOffButton(context);
//手动新增日志 LackOff.addLog(LackOffBean( logType:'', logTitle: '', logDetail: '', date: DateTime.now().toString(), ));
鸿蒙next 模拟器