美文网首页
自己用flutter遇到的一些bug

自己用flutter遇到的一些bug

作者: 小浩_w | 来源:发表于2020-05-07 10:15 被阅读0次

dependOnInheritedWidgetOfExactType<_LocalizationsScope>() or dependOnInheritedElement() was called
before HomeState.initState() completed.

  ///代码需要在initState()后执行
  @override
  void initState() {
    super.initState();

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

相关文章

网友评论

      本文标题:自己用flutter遇到的一些bug

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