Flutter 는 Android & iOS 한번에 앱 아이콘 적용 가능하다.
이미지 파일 프로젝트에 추가. (512 x 512 사이즈만 가능하다고 한다)
pubspec.yaml 파일에 추가
flutter_launcher_icons: ^0.7.2
flutter_icons:
android: true
ios: true
image_path: "images/app_icon.png"
dependencies:
flutter_launcher_icons: ^0.7.2
dev_dependencies:
flutter_test:
sdk: flutter
flutter_icons:
android: true
ios: true
image_path: "images/app_icon.png"
Terminal 에 flutter pub run flutter_launcher_icons:main 명령어 입력.
❯ flutter pub run flutter_launcher_icons:main
Android minSdkVersion = 16
Creating default icons Android
Adding a new Android launcher icon
Overwriting default iOS launcher icon with new icon
위와 같이 나오면 성공.
반응형
'Flutter' 카테고리의 다른 글
[Flutter] Padding & Margin (0) | 2021.12.01 |
---|---|
[Flutter] 앱 이름 변경하기 (Android & iOS 한번에) (0) | 2020.09.28 |
[Flutter] bottomNavigationBar (0) | 2020.09.18 |
[Flutter] Admob 연동하기 (0) | 2020.09.18 |
[Flutter] Widget 테두리 설정 (border) (0) | 2020.09.17 |