美文网首页
Flutter: Unhandled Exception: in

Flutter: Unhandled Exception: in

作者: Dove_iOS | 来源:发表于2019-11-19 16:27 被阅读0次

Flutter: Unhandled Exception: inheritFromWidgetOfExactType(_LocalizationsScope) or inheritFromElement() was called before Page.initState() completed...

解决办法:
让代码在 initState 后执行...

  @override
  void initState() {
    super.initState();

    Future.delayed(Duration.zero, () {
    //执行代码写在这里
    });
  }

相关文章

网友评论

      本文标题:Flutter: Unhandled Exception: in

      本文链接:https://www.haomeiwen.com/subject/nlqgictx.html