使用showGeneralDialog對我來說很有用。。。 showGeneralDialog( context: context, pageBuilder: (context, animation, secondaryAnimation) { return SafeArea( child: Container( width: MediaQuery.of(context).size.width, height: MediaQuery.of(context).size.height, padding: EdgeInsets.all(20), color: Colors.black, child: Center( child:Column( mainAxisSize: MainAxisSize.min, children:<Widget> [// add your image & close icon here.. ], ), ), ), ); }, ); }