Flutter测试MissingPluginException

Flutter测试MissingPluginException,第1张

Flutter测试MissingPluginException

如果您使用的是shared_preferences 0.2.4及更高版本,请使用

setMockInitialValues

SharedPreferences.setMockInitialValues({}); // set initial values here if desired

对于早期版本,您可以手动进行 *** 作

const MethodChannel('plugins.flutter.io/shared_preferences')  .setMockMethodCallHandler((MethodCall methodCall) async {    if (methodCall.method == 'getAll') {      return <String, dynamic>{}; // set initial values here if desired    }    return null;  });


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/4887895.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-11-11
下一篇 2022-11-11

发表评论

登录后才能评论

评论列表(0条)

保存