flutter_cupertino_date_picker 编译报错 The type 'DiagnosticableMixin' can't be mixed in 的解决办法

/flutter/.pub-cache/hosted/pub.flutter-io.cn/flutter_cupertino_date_picker-1.0.26+2/lib/src/date_picker_theme.dart:23:7: Error: The type 'DiagnosticableMixin' can't be mixed in.

class DateTimePickerTheme with DiagnosticableMixin {

解决: Flutter 1.22+ 之后DiagnosticableMixin类没有了, 修改date_picker_theme.dart类的源码替换为 Diagnosticable 即可.

 

class DateTimePickerTheme with DiagnosticableMixin {

  

posted @ 2021-10-08 20:37  beansoft  阅读(192)  评论(0编辑  收藏  举报