Open2

【Flutter】小ネタ

カワグチミサキカワグチミサキ

AppBarの裏までbodyの表示エリアを広げる

return Scaffold(
  // AppBarの裏までbodyの表示エリアを広げる
  extendBodyBehindAppBar: true,
  appBar: AppBar(
    backgroundColor: Colors.transparent,
    elevation: 0,
    title: const Text('ダミー'),
  ),
);
カワグチミサキカワグチミサキ

グラデーション

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