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

outdated

A useful debug tool for flutter developer. Easy to use. Show anywhere where to want. It`s powerful and useful. You will look over the request log without computer. Logs can be viewed anywhere in the A [...]

app_debug #

A useful debug tool for flutter developer. Easy to use. Show anywhere where to want. Its powerful and useful. You will look over the request log without computer. Logs can be viewed anywhere in the APP. Its a quck way to chose the api host. Change the api host to dev, test or prduct in APP. Just enjoy it. Have fun.

Getting Started #

This project is a starting point for a Dart package, a library module containing code that can be shared easily across multiple Flutter or Dart projects.

For help getting started with Flutter, view our online documentation, which offers tutorials, samples, guidance on mobile development, and a full API reference.

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.0.0
    
  2. Install it You can install packages from the command line: with Flutter:

     $ flutter pub get
    

    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: _getCellWithItem(_Type.CellVersion),
),

0x03 show anywhere #

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.apiList.add(ApiUrlConfig.API_BETA_URL); //添加 beta 环境 host
    AppDebug.instance.apiList.add(ApiUrlConfig.API_PRODUCT_URL); //添加 product 环境 host
    AppDebug.instance.apiSelectedCallback = (String api){ // api host 变更后回调
      Global.env = ENV.values[AppDebug.instance.apiList.indexOf(api)];
    };
  }
2
likes
0
pub points
0%
popularity

Publisher

unverified uploader

A useful debug tool for flutter developer. Easy to use. Show anywhere where to want. It`s powerful and useful. You will look over the request log without computer. Logs can be viewed anywhere in the APP. It`s a quck way to chose the api host. Change the api host to dev, test or prduct in APP. Just enjoy it. Have fun.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter, shared_preferences

More

Packages that depend on app_debug