AlertDialog を角丸にするの?|AlertDialog|Flutter
AlertDialog は、四隅の角を丸めることもできるよ。
AlertDialog の「shape」プロパティに「RoundedRectangleBorder」を使おう。
使い方
AlertDialog(
title: Text('マッチョなゴマフアザラシ'),
shape: const RoundedRectangleBorder(
borderRadius: BorderRadius.all(
Radius.circular(8.0),
),
),
),
コメント
コメントを投稿