自己用flutter遇到的一些bug

2020-05-07  本文已影响0人  小浩_w

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

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

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

猜你喜欢

热点阅读