どうも、ちょげ(@chogetarou)です。
Cardの影を削除する方法を紹介します。
方法

Cardの影を削除するには、引数「elevation」を使います。
具体的には、Cardの引数「elevation」に「0」を指定します。
@override
Widget build(BuildContext context) {
return Scaffold(
body: Center(
child: Card(
elevation: 0,
color: Colors.blue,
child: ListTile(
title: Text(
'Flutter',
style: TextStyle(color: Colors.white),
),
),
),
),
);
}

コメント