Flutter: 跳转到新页面的同时showDialog

需求:
跳转到新页面,并且立即在新页面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);
  });
}

现在是满足需求了。但是我在想是否有更优雅的写法?

阅读 1.2k
撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题