自己用flutter遇到的一些bug

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

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

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

你可能感兴趣的:(自己用flutter遇到的一些bug)