需求:
跳转到新页面,并且立即在新页面showDialg。
我是把 showDialog
写在 initState
里的:
class _Page2State extends State<_Page2> {
@override
void initState() {
super.initState();
_showDialog(context: context);
}
@override
Widget build(BuildContext context) {
return Scaffold(
body: Container(color: Colors.red),
);
}
}
void _showDialog({required BuildContext context}) {
showCupertinoModalPopup(
context: context,
builder: (context) {
return Container(
width: 300,
height: 100,
color: Colors.green,
);
},
);
}
但是报错了:
dependOnInheritedWidgetOfExactType<_InheritedCupertinoTheme>() or dependOnInheritedElement() was called before _Page2State.initState() completed.
于是我改了下代码:
@override
void initState() {
super.initState();
WidgetsBinding.instance?.addPostFrameCallback((timeStamp) {
_showDialog(context: context);
});
}
现在是满足需求了。但是我在想是否有更优雅的写法?