Flutter: Unhandled Exception: inheritFromWidgetOfExactType(_LocalizationsScope) or inheritFromEle...

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: inheritFromWidgetOfExactType(_LocalizationsScope) or inheritFromEle...)