回答編集履歴
1
誤字の修正
test
CHANGED
@@ -32,7 +32,7 @@
|
|
32
32
|
|
33
33
|
解決方法:
|
34
34
|
|
35
|
-
didChangeDependenciesを使用して、initState完了後に処理を実行する。
|
35
|
+
①didChangeDependenciesを使用して、initState完了後に処理を実行する。
|
36
36
|
|
37
37
|
```dart
|
38
38
|
|
@@ -48,7 +48,7 @@
|
|
48
48
|
|
49
49
|
```
|
50
50
|
|
51
|
-
initState内でFutureを使用して無理やりinitStateが完了するのを待つ
|
51
|
+
②initState内でFutureを使用して無理やりinitStateが完了するのを待つ
|
52
52
|
|
53
53
|
```dart
|
54
54
|
|
@@ -68,6 +68,6 @@
|
|
68
68
|
|
69
69
|
```
|
70
70
|
|
71
|
-
参
|
71
|
+
参照元でも書いていましたが、①のdidChangeDependenciesを使用したほうが良さげな気がします。
|
72
72
|
|
73
73
|
参照:[Unhandled Exception: inheritFromWidgetOfExactType(_LocalizationsScope) or inheritFromElement() was called before _ScreenState.initState() completed](https://stackoverflow.com/questions/56395081/unhandled-exception-inheritfromwidgetofexacttype-localizationsscope-or-inheri)
|