1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

【flutter】appBarのタイトルと背景色を実装するには?

Last updated at Posted at 2023-08-16

こんにちは。
今回は、スマホアプリでよく見るappbarに背景色とタイトルを実装する方法を紹介します。

方法

スクリーンショット 2023-08-13 20.18.51.png

appbarにタイトルをつけるには、AppBarの引数に「title」を使います。
appbarに背景色をつけるには、AppBarの引数に「backgroundColor」を使います。

使用例

appBar: AppBar(
        backgroundColor: Colors.pink,//背景の色を選択
        title: const Text("Flutter!!!!"),//タイトルを表示
      )

実行例

スクリーンショット 2023-08-13 19.55.35.png

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?