app_debug 1.1.0 copy "app_debug: ^1.1.0" to clipboard
app_debug: ^1.1.0 copied to clipboard

A useful debug tool for flutter developer. Easy to use. Show it wherever you want. You will look over the request log without computer. It's a quick way to chose the api host.

example/example.md

How to use #

0x01 Use this package as a library #

  1. Depend on it Add this to your package's pubspec.yaml file:

     dependencies:
       app_debug: ^1.1.0
    
    copied to clipboard
  2. Install it You can install packages from the command line: with Flutter:

     $ flutter pub get
    
    copied to clipboard

    Alternatively, your editor might support flutter pub get. Check the docs for your editor to learn more.

  3. Import it

    Now in your Dart code, you can use: import 'package:app_debug/app_debug.dart';


0x02 Init GestureDetector actions #

In about_us_page, at version show. Add a GestureDetector, and isManuel set true.

GestureDetector(
  onTap: (){
    AppDebug.showDebugTool(context,isManuel: true);
  },
  child: [YOU_WIDGET],
),
copied to clipboard

0x03 Add api request log. #

At base request file. Add response, queryParameters, data, headers and url.

   AppDebug.instance.data.addObject({
      "url":'${response.request.baseUrl+response.request.path}',
      "queryParameters":json.encode(response.request.queryParameters),
      "headers":json.encode(response.request.headers),
      "response":jsonDecode(response.toString()),
      '---':'------------------------------'
    });
copied to clipboard

0x04 init it after App launch. #

In splash_page or home_page, init AppDebug. The first page of finish launching.

 @override
  void initState() {
    super.initState();
    // 初始化调试工具
    _initAppDebug ();
  }

  void _initAppDebug (){
    AppDebug.showDebugTool(context); // 初始化 AppDebug。 在 关于界面 配置 AppDebug.showDebugTool(context,isManuel: true); 后生效
    AppDebug.instance.apiSelected = Global.getApiUrl(); // 设置当前环境
    AppDebug.instance.apiList.add(ApiUrlConfig.API_DEV_URL); //添加 dev 环境 host
    AppDebug.instance.apiList.add(ApiUrlConfig.API_TEST_URL);  //添加 test 环境 host
    AppDebug.instance.apiSelectedCallback = (String api){ // api host 变更后回调

    };
  }
copied to clipboard
2
likes
40
points
49
downloads

Publisher

unverified uploader

Weekly Downloads

2024.09.17 - 2025.04.01

A useful debug tool for flutter developer. Easy to use. Show it wherever you want. You will look over the request log without computer. It's a quick way to chose the api host.

Repository (GitHub)

License

MIT (license)

Dependencies

flutter, shared_preferences

More

Packages that depend on app_debug