[Flutter] 앱 아이콘 변경

Taeho Min·2021년 3월 23일
0

Flutter

목록 보기
6/6

1) 아이콘 파일을 준비하고 프로젝트 root에 폴더를 만들어 저장한다.

  • 512*512로

2) pubspec.yaml 파일에 다음을 추가해 준다.

dependencies:
  ..
  flutter_launcher_icons:
  ..

flutter_icons:
  android: "launcher_icon"
  ios: true
  image_path: "icon/app_icon.jpg"
  

3) 터미널에서 다음 명령을 입력해 준다.
flutter pub run flutter_launcher_icons:main

profile
개발자

0개의 댓글