Skip to content

Commit 4217e4c

Browse files
committed
added app icon
1 parent aa836be commit 4217e4c

37 files changed

+71
-1
lines changed
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
3+
<background android:drawable="@drawable/ic_launcher_background"/>
4+
<foreground android:drawable="@drawable/ic_launcher_foreground"/>
5+
</adaptive-icon>
Loading
Loading
Loading
Loading
Loading

assets/icon/background.png

6.26 KB
Loading

assets/icon/foreground.png

10.6 KB
Loading

assets/icon/icon.png

16.3 KB
Loading

ios/Runner.xcodeproj/project.pbxproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -468,4 +468,4 @@
468468
/* End XCConfigurationList section */
469469
};
470470
rootObject = 97C146E61CF9000F007C117D /* Project object */;
471-
}
471+
}
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading

pubspec.lock

+56
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,20 @@ packages:
88
url: "https://pub.dartlang.org"
99
source: hosted
1010
version: "1.10.24"
11+
archive:
12+
dependency: transitive
13+
description:
14+
name: archive
15+
url: "https://pub.dartlang.org"
16+
source: hosted
17+
version: "3.1.2"
18+
args:
19+
dependency: transitive
20+
description:
21+
name: args
22+
url: "https://pub.dartlang.org"
23+
source: hosted
24+
version: "2.0.0"
1125
async:
1226
dependency: transitive
1327
description:
@@ -50,6 +64,13 @@ packages:
5064
url: "https://pub.dartlang.org"
5165
source: hosted
5266
version: "1.15.0"
67+
crypto:
68+
dependency: transitive
69+
description:
70+
name: crypto
71+
url: "https://pub.dartlang.org"
72+
source: hosted
73+
version: "3.0.1"
5374
cupertino_icons:
5475
dependency: "direct main"
5576
description:
@@ -83,6 +104,13 @@ packages:
83104
description: flutter
84105
source: sdk
85106
version: "0.0.0"
107+
flutter_launcher_icons:
108+
dependency: "direct dev"
109+
description:
110+
name: flutter_launcher_icons
111+
url: "https://pub.dartlang.org"
112+
source: hosted
113+
version: "0.9.0"
86114
flutter_riverpod:
87115
dependency: "direct main"
88116
description:
@@ -114,6 +142,13 @@ packages:
114142
url: "https://pub.dartlang.org"
115143
source: hosted
116144
version: "0.14.2"
145+
image:
146+
dependency: transitive
147+
description:
148+
name: image
149+
url: "https://pub.dartlang.org"
150+
source: hosted
151+
version: "3.0.2"
117152
intl:
118153
dependency: "direct main"
119154
description:
@@ -212,6 +247,13 @@ packages:
212247
url: "https://pub.dartlang.org"
213248
source: hosted
214249
version: "1.11.1"
250+
petitparser:
251+
dependency: transitive
252+
description:
253+
name: petitparser
254+
url: "https://pub.dartlang.org"
255+
source: hosted
256+
version: "4.1.0"
215257
platform:
216258
dependency: transitive
217259
description:
@@ -434,6 +476,20 @@ packages:
434476
url: "https://pub.dartlang.org"
435477
source: hosted
436478
version: "0.2.0"
479+
xml:
480+
dependency: transitive
481+
description:
482+
name: xml
483+
url: "https://pub.dartlang.org"
484+
source: hosted
485+
version: "5.1.2"
486+
yaml:
487+
dependency: transitive
488+
description:
489+
name: yaml
490+
url: "https://pub.dartlang.org"
491+
source: hosted
492+
version: "3.1.0"
437493
sdks:
438494
dart: ">=2.12.0 <3.0.0"
439495
flutter: ">=2.0.0"

pubspec.yaml

+9
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,15 @@ dependencies:
4141
dev_dependencies:
4242
flutter_test:
4343
sdk: flutter
44+
flutter_launcher_icons: "^0.9.0"
45+
46+
flutter_icons:
47+
android: true
48+
ios: true
49+
remove_alpha_ios: true
50+
image_path: "assets/icon/icon.png"
51+
adaptive_icon_background: "assets/icon/background.png"
52+
adaptive_icon_foreground: "assets/icon/foreground.png"
4453

4554
# For information on the generic Dart part of this file, see the
4655
# following page: https://dart.dev/tools/pub/pubspec

0 commit comments

Comments
 (0)