[Flutter]AppBarの後ろにbodyを表示するには?

Flutter

どうも、ちょげ(@chogetarou)です。

AppBarの後ろにbodyを表示するには、どうしたらいいのでしょうか?

スポンサーリンク

方法

  @override
  Widget build(BuildContext context) {
    return Scaffold(
        extendBodyBehindAppBar: true,
        appBar: AppBar(
          backgroundColor: Colors.transparent,
          elevation: 0,
        ),
        body: Padding(
            padding: const EdgeInsets.all(8.0),
            child: Container(
              color: Colors.blue,
            )
        )
    );
  }

Scaffoldの引数「extendBodyBehindAppBar」に、「true」を指定することで、AppBarの後ろにbodyを表示することが出来るようになります。

コメント

タイトルとURLをコピーしました