-
Notifications
You must be signed in to change notification settings - Fork 14
/
pubspec.yaml
71 lines (63 loc) · 1.89 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
name: weather_app
description: A new Flutter project.
publish_to: 'none'
version: 0.1.0
environment:
sdk: '>=3.0.1 <4.0.0'
dependencies:
cupertino_icons: # cupertino icons
get: # for state management and context less stuff
logger: # log events in clear way insted of (print)
flutter_screenutil: # make app responsive
dio: # for api requests
http_mock_adapter: # mocking dio for testing
pretty_dio_logger: # for dio api logging and debugging
shared_preferences: # shared preferences persistence key value store
location: # for location
flutter_launcher_icons: # change app icon
flutter_svg: # for svg icons
smooth_page_indicator: # for onboarding screen
flutter_spinkit: # for loading indicator
cached_network_image: # for network image
carousel_slider: # for image slider
shimmer: # for shimmer effect
intl: # for date format
step_progress_indicator: # for progress indicator
lottie: # for Adobe After Effects animations
flutter_animate: # for animation
flutter:
sdk: flutter
dev_dependencies:
flutter_test:
sdk: flutter
flutter_lints: ^2.0.0
flutter_icons:
android: true
ios: true
image_path: "assets/images/app_icon.png"
adaptive_icon_background: "#6151C3"
adaptive_icon_foreground: "assets/images/app_icon_foreground.png"
flutter:
uses-material-design: true
assets:
- assets/images/
- assets/vectors/
- assets/fonts/
- assets/data/
fonts:
- family: Poppins
fonts:
- asset: assets/fonts/Poppins-Regular.ttf
weight: 300
- asset: assets/fonts/Poppins-Medium.ttf
weight: 500
- asset: assets/fonts/Poppins-SemiBold.ttf
weight: 700
- family: Cairo
fonts:
- asset: assets/fonts/Cairo-Regular.ttf
weight: 300
- asset: assets/fonts/Cairo-Medium.ttf
weight: 500
- asset: assets/fonts/Cairo-SemiBold.ttf
weight: 900