Flutter - 仿iOS present跳转

一、仿iOS present页面跳转

Navigator.of(context).push(MaterialPageRoute(
      builder: (context){
          return Add();
      },
    fullscreenDialog: true
 ));

你可能感兴趣的:(Flutter - 仿iOS present跳转)