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のassetsの管理を幾分か楽にする

Posted at

Android Studioを利用してFlutterアプリを開発する場合に、assetsフォルダの定義を、pubspec.yamlに
手動反映するのがメンドイ、さらに定数クラス的なものを作ってconstにするのがメンドイ。という場合がある。
それを若干楽にする方法を記載する。

やり方

  1. pubspec.yamlのflutter:タグにassets:タグだけ書いておく
  2. Android Studioプラグインの「FlutterAssetsGenerator」と「FlutterAssetSync」をインストールする。
  3. assetsフォルダになんらかのファイルをぶちこむ
  4. ツールメニューから「FlutterAssetSync」を実行すると、pubspec.yamlのassets:タグの中が書き換わってブチこんだファイルパスが書き込まれる。
  5. Alt + Gを押下する。(FlutterAssetsGeneratorの機能)
  6. /libにgeneratedフォルダが生成され、assets.dartが生成されている。

課題

自分の意図しないフォルダに配置されるので、Assets_generatorを利用するか、flutter_gen_runnerの設定をオーバーライドするようなリソースを作成したほうがよい?

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?