どうも、ちょげ(@chogetarou)です。
SnackBarの背景を透明にする方法を紹介します。
方法

SncakBarの背景を透明にするには、引数「backgoroundColor」と引数「elevation」を使います。
具体的には、SnackBarの引数「backgroundColor」にColors.transparent、引数「elevation」に0を指定します。
SnackBar(
backgroundColor: Colors.transparent,
elevation: 0,
content: Text(
'Snack Message',
style: TextStyle(color: Colors.black),
),
),

引数「backgroundColor」と引数「elevation」を使えば、SnackBarの背景を透明にすることが出来ます。
コメント