0
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】タスクスイッチャーのアプリ名を変更する

Posted at

はじめに

下記の画像のようなアプリを切り替える画面で、名称がアイコンの横に表示されます。

image.png

この名称を変更する方法がわからなかったのですが解決したので記事にしたいと思います。

変更方法

先に解決方法だけ示すと、下記のタイトルを変えるといいみたいです。

MaterialApp(
      title: 'Flutter Demo'

下記の記事のように、アプリ名の変更方法はたくさん出てくるのですが、アプリを切り替える画面での名称変更が出てきませんでした。

そこで、表示されている文字列で検索をかけたところ、MaterialAppのタイトルに同じ文字列が使われていて判明しました。

また、後で調べると、Stackoverflowにも質問があり、回答がわかりやすかったので載せておきます。
https://stackoverflow.com/questions/50615006/flutter-where-is-the-title-of-material-app-used

0
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
0
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?