FlutterのAppBarのHeightを長くして戻るボタンやタイトルを下寄せする仕様が発生したので実装してみた。
Scaffold(
appBar: PreferredSize(
preferredSize: const Size.fromHeight(100),
child: Column(
children: [
const Spacer(),
AppBar(
title: Text('Title'),
),
],
),
),
高さを100にしてAppBarの上にSpacerを入れてAppBarを下寄せしている。