Flutter | Dart语法-Mixins的使用
Flutter | Mixin的使用在我开始学习Dart语法时,我见到这样一种代码`class CurrentLocale with ChangeNotifier{ Locale _locale =Locale("zh_CN"); Locale get value => _locale; void setLocale(locale) async{ _locale = await locale; notifyListeners(); }}...
原创
2020-11-10 11:38:10 ·
731 阅读 ·
1 评论