dependOnInheritedWidgetOfExactType<_LocalizationsScope>() or dependOnInheritedElement() was called
before HomeState.initState() completed.
///代碼需要在initState()后執(zhí)行
@override
void initState() {
super.initState();
Future.delayed(Duration.zero, () {
//執(zhí)行代碼寫在這里
});
}