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

add log to flutter project with UI

Pub使用 #

1. Depend on it #

Add this to your package's pubspec.yaml

dependencies:
 magpie_log: ^1.0.0

2. Install it #

You can install packages from the command line:

$ 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:magpie_log/magpie_log.dart';

Dart使用方式 #

在自己工程首页调用MagpieLog.instance.init初始化方法

Widget build(BuildContext context) {
    MagpieLog.instance.init(context, 
        ReportMethod.timing, 
        ReportChannel.natives,
        callback: _receiverMagpieData, 
        time: 1 * 60 * 1000,     
        count: 3);
    return Container();
}

redux圈选使用方式 #

redux圈选 你的工程需要使用flutter-redux做状态管理 需要注入一个中间件CircleMiddleWare

final store = Store<AppState>(reducer,
      middleware: [CircleMiddleWare()], initialState: AppState.initState());

其中的AppState也就是store存储的数据集必须继承LogState 因为我们需要toJson方法才能更好的获取参数

class AppState extends LogState {
  Map<String, dynamic> toJson() => _$AppStateToJson(this);
}

随后就可以使用我们的redux圈选

页面圈选使用 #

需要注册navigator监听LogObserver,当然我们需要你显示的设置页面settings这样我们才能获取页面的唯一标识

MaterialApp(
    routes: {
      '/': (BuildContext context) => TopScreen(),
      '/UnderScreen': (BuildContext context) => UnderScreen(),
    },
    navigatorObservers: [
      LogObserver<AppState>(),
    ],
    title: 'Flutter Demo',
    theme: ThemeData(primarySwatch: Colors.deepOrange),
  ),

setState()圈选使用 #

继承WidgetLogState即可实现对应方法

class AddTextState extends WidgetLogState<AddTextWidget> {
  @override
  Map<String, dynamic> toJson() {
    Map map = Map<String, dynamic>();
    map["count"] = count.toString();
    return map;
  }

  @override
  String getActionName() {
    return "AddText";
  }

  @override
  int getIndex() {
    return 0;
  }
}

详细文档参见 #

magpie圈选埋点实现

0
likes
20
pub points
0%
popularity

Publisher

unverified uploader

add log to flutter project with UI

Homepage

License

BSD-3-Clause (LICENSE)

Dependencies

cupertino_icons, device_info, flutter, flutter_redux, fluttertoast, json_annotation, path_provider, redux, rubber

More

Packages that depend on magpie_log