Skip to content

Commit 5326189

Browse files
committed
Make app icons of the both
1 parent b57da89 commit 5326189

27 files changed

+79
-1
lines changed
Loading
Loading
Loading
Loading
Loading
-5.69 KB
Loading
-6.2 KB
Loading

assets/icons/content_copy_1024px.png

55.1 KB
Loading

assets/icons/content_copy_1024px.svg

+1
Loading

assets/icons/icon_512.png

46.1 KB
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading

pubspec.lock

+72
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,20 @@
11
# Generated by pub
22
# See https://www.dartlang.org/tools/pub/glossary#lockfile
33
packages:
4+
archive:
5+
dependency: transitive
6+
description:
7+
name: archive
8+
url: "https://pub.dartlang.org"
9+
source: hosted
10+
version: "2.0.9"
11+
args:
12+
dependency: transitive
13+
description:
14+
name: args
15+
url: "https://pub.dartlang.org"
16+
source: hosted
17+
version: "1.5.1"
418
async:
519
dependency: transitive
620
description:
@@ -29,18 +43,48 @@ packages:
2943
url: "https://pub.dartlang.org"
3044
source: hosted
3145
version: "1.14.11"
46+
convert:
47+
dependency: transitive
48+
description:
49+
name: convert
50+
url: "https://pub.dartlang.org"
51+
source: hosted
52+
version: "2.1.1"
53+
crypto:
54+
dependency: transitive
55+
description:
56+
name: crypto
57+
url: "https://pub.dartlang.org"
58+
source: hosted
59+
version: "2.0.6"
3260
cupertino_icons:
3361
dependency: "direct main"
3462
description:
3563
name: cupertino_icons
3664
url: "https://pub.dartlang.org"
3765
source: hosted
3866
version: "0.1.2"
67+
dart_config:
68+
dependency: transitive
69+
description:
70+
path: "."
71+
ref: HEAD
72+
resolved-ref: a7ed88a4793e094a4d5d5c2d88a89e55510accde
73+
url: "https://github.com/MarkOSullivan94/dart_config.git"
74+
source: git
75+
version: "0.5.0"
3976
flutter:
4077
dependency: "direct main"
4178
description: flutter
4279
source: sdk
4380
version: "0.0.0"
81+
flutter_launcher_icons:
82+
dependency: "direct main"
83+
description:
84+
name: flutter_launcher_icons
85+
url: "https://pub.dartlang.org"
86+
source: hosted
87+
version: "0.7.0"
4488
flutter_local_notifications:
4589
dependency: "direct main"
4690
description:
@@ -53,6 +97,13 @@ packages:
5397
description: flutter
5498
source: sdk
5599
version: "0.0.0"
100+
image:
101+
dependency: transitive
102+
description:
103+
name: image
104+
url: "https://pub.dartlang.org"
105+
source: hosted
106+
version: "2.0.7"
56107
matcher:
57108
dependency: transitive
58109
description:
@@ -81,6 +132,13 @@ packages:
81132
url: "https://pub.dartlang.org"
82133
source: hosted
83134
version: "1.5.0"
135+
petitparser:
136+
dependency: transitive
137+
description:
138+
name: petitparser
139+
url: "https://pub.dartlang.org"
140+
source: hosted
141+
version: "2.2.1"
84142
platform:
85143
dependency: transitive
86144
description:
@@ -163,6 +221,20 @@ packages:
163221
url: "https://pub.dartlang.org"
164222
source: hosted
165223
version: "2.0.8"
224+
xml:
225+
dependency: transitive
226+
description:
227+
name: xml
228+
url: "https://pub.dartlang.org"
229+
source: hosted
230+
version: "3.4.1"
231+
yaml:
232+
dependency: transitive
233+
description:
234+
name: yaml
235+
url: "https://pub.dartlang.org"
236+
source: hosted
237+
version: "2.1.15"
166238
sdks:
167239
dart: ">=2.2.0 <3.0.0"
168240
flutter: ">=0.1.4 <2.0.0"

pubspec.yaml

+6-1
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ dependencies:
2121
sdk: flutter
2222
flutter_local_notifications: ^0.7.0
2323
shared_preferences: "^0.5.2"
24+
flutter_launcher_icons: "^0.7.0"
2425

2526
# The following adds the Cupertino Icons font to your application.
2627
# Use with the CupertinoIcons class for iOS style icons.
@@ -30,6 +31,10 @@ dev_dependencies:
3031
flutter_test:
3132
sdk: flutter
3233

34+
flutter_icons:
35+
image_path: "assets/icons/icon_512.png"
36+
android: true
37+
ios: true
3338

3439
# For information on the generic Dart part of this file, see the
3540
# following page: https://www.dartlang.org/tools/pub/pubspec
@@ -71,4 +76,4 @@ flutter:
7176
# weight: 700
7277
#
7378
# For details regarding fonts from package dependencies,
74-
# see https://flutter.io/custom-fonts/#from-packages
79+
# see https://flutter.io/custom-fonts/#from-packages

0 commit comments

Comments
 (0)