BottomSheet の上部を角丸にするの?|BottomSheet|Flutter
API「showModalBottomSheet<T>」を使って表示した BottomSheet は、上部の両角を丸めることもできるよ。
BottomSheet の「shape」プロパティに「RoundedRectangleBorder」を使おう。
使い方
onPressed: () => showModalBottomSheet<void>(
context: context,
builder: (BuildContext context) {
return Container();
},
builder: (BuildContext context) {
return Container();
},
shape: const RoundedRectangleBorder(
borderRadius: BorderRadius.vertical(
top: Radius.circular(4.0),
),
),
),
コメント
コメントを投稿