-
Notifications
You must be signed in to change notification settings - Fork 9
/
pubspec.yaml
38 lines (32 loc) · 1.02 KB
/
pubspec.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
name: unsplash_client
description: Simple Flutter App showing trending images from Unsplash (https://unsplash.com/).
version: 1.0.0
dependencies:
flutter:
sdk: flutter
# display images in staggered grid
flutter_staggered_grid_view: ^0.2.7
# open url for an image
url_launcher: ^5.0.2
# image loading
cached_network_image: ^0.7.0
# zoom images
photo_view: ^0.2.2
# format date
date_format: ^1.0.6
dev_dependencies:
flutter_test:
sdk: flutter
# launcher icons
flutter_launcher_icons: "^0.7.0"
# specify launcher icons
flutter_icons:
image_path_android: "assets/ic_launcher_android.png"
android: true # can specify file name here e.g. "ic_launcher"
image_path_ios: "assets/ic_launcher_ios.png"
ios: true # can specify file name here e.g. "My-Launcher-Icon"
# android adaptive icons only available for Android 8.0 devices and above
adaptive_icon_foreground: "assets/ic_launcher_foreground.png"
adaptive_icon_background: "assets/ic_launcher_background.png"
flutter:
uses-material-design: true