You have to wrap AlertDialog inside the SizedBox with your prefered width and height.
AlertDialog
SizedBox
return Sizedbox( width: 200, // give width height: 200, // give height child: AlertDialog( // your code ), );