BoxDecoration
BoxDecoration(
// 線形グラデーション
gradient: LinearGradient(
// 下方向から上方向に向かってグラデーションさせる
begin: FractionalOffset.bottomCenter,
end: FractionalOffset.topCenter,
// 半透明の黒から透明にグラデーションさせる
colors: [
Colors.black.withOpacity(0.5),
Colors.transparent,
],
stops: [0.0, 1.0],
)