commonList property

List<Pluggable> commonList
getter/setter pair

Implementation

List<Pluggable> commonList = [
  //9999 代理
  const ProxyPlugable(),
  //9998 网络请求
  const DioPluggable(),
  //9997 日志
  const ApplogPluggable(),
  //9996 设备信息
  const AppInfoPluggable(),
  //9987 文件管理器
  const FileManagerPluggable(),
  //9986 路由记录
  const RouteHistoryPluggable(),
  //9995 数据库
  const DatabasePluggable(),
  // const ShowCodePluggable(),
  //9994 组件信息
  if (kDebugMode) const WidgetInfoPluggable(),
  //9993 组件详情
  if (kDebugMode) const WidgetDetailPluggable(),
  //9992 性能
  const PerformancePluggable(),
  //9991 正则
  const RegularPluggable(),
  //9990 颜色选择器
  const ColorPickerPluggable(scale: 5, size: Size(70, 70)),

  // const ColorPicker(),
  //9989 帧率
  const FrameRatePluggable(),
  //9988 对齐尺子
  const AlignRulerPluggable(),
];