2
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_launcher_iconsの警告

Posted at

flutterのアプリアイコンは、flutter_launcher_iconsが便利との事で今回はこれを使用することにしてみました。

flutter_launcher_iconsの0.13.1でネットで調べながら作業したら警告が出たので
それの対応方法をメモっておきます。

アプリアイコンの作成コマンドで警告がでる

警告がでるコマンド

flutter pub run flutter_launcher_icons:main

警告の出ないコマンド

flutter pub run flutter_launcher_icons

アプリアイコンの作成中に警告がでる

設定ファイルの書式が悪いと以下の様な警告が出た。

Warning: flutter_icons has been deprecated please use flutter_launcher_icons instead in your yaml files

警告がでる設定

pubspec.yaml
dev_dependencies:
  flutter_launcher_icons: "^0.13.1"

flutter_icons:
  # アイコンの設定

警告の出ない設定

pubspec.yaml
dev_dependencies:
  flutter_launcher_icons: "^0.13.1"

flutter_launcher_icons:
  # アイコンの設定

アイコンの設定書式は、基本同じで良さそうです。

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