どうも、ちょげ(@chogetarou)です。
AlertDialogのマージンを削除する方法を紹介します。
方法

AlertDialogのマージンを削除するには、引数「InsetPadding」に「EdgeInsets.zero」を指定します。
AlertDialog(
insetPadding: EdgeInsets.zero,
title: Text('Alert'),
content: Container(
height: 50,
width: 400,
),
)

コメント