どうも、ちょげ(@chogetarou)です。
AppBarのタイトルを画像にするには、どうしたらいいのでしょうか?
方法

appBar: AppBar(
leading: Icon(Icons.calendar_today),
title: Image.asset(
'asset/images/dog-illust.jpg',
height: 40,
width: 40,
),
actions: [Icon(Icons.settings)],
),
AppBarのタイトルを画像にするには、引数「title」に画像を指定します。
「title」は、テキストしか指定できないと思うかもしれません。
ですが、この引数には、テキスト以外のウェジェットを使うことも出来るのです。
コメント