Flutter & AlertDialog:如何将其对齐到底部?我如何制作 2 个像这张图片一样的警报对话框?请多多关注这张图片。
showDialog(
context: context,
builder: (BuildContext context) {
double width =
MediaQuery.of(context).size.width;
double height =
MediaQuery.of(context).size.height;
return AlertDialog(
backgroundColor: Colors.transparent,
contentPadding: EdgeInsets.zero,
title: Center(
child: Text("Evaluation our APP")),
content: Container(
// What Should I write here?
)
},
);
Run Code Online (Sandbox Code Playgroud)