-
Notifications
You must be signed in to change notification settings - Fork 2
/
pubspec.yaml
158 lines (115 loc) · 2.86 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
name: mobile_polimi_project
description: Flutter project for course of Design and Implementation of Mobile Applications 2020-2021
publish_to: "none"
version: 1.0.0+1
environment:
sdk: ">=2.7.0 <3.0.0"
dependencies:
flutter:
sdk: flutter
# Internazionalization
intl: any
# .env files
# envify: any
# Compare objects based on their values
equatable: any
# Http client generator (datasources)
retrofit: any
dio: any
# Functional programming (Either, Task)
dartz: any
# Navigation and routing
auto_route: any
# Code generator for unions/pattern-matching/copy
freezed: any
# json serialization
json_serializable: any
# Dependency Injection auto-generated
injectable: any
# Usecase class generator
repo_case: any
# Status bar theme
flutter_statusbar_manager: any
# Strava API auth
# oauth2: ^1.6.3
# Strava auth code on browser
webview_flutter: ^1.0.7
# Secure local token storage
flutter_secure_storage: ^3.3.5
# State management
flutter_bloc: ^6.1.1
# Lists
dartx: ^0.5.0
# Date picker
date_picker_timeline: ^1.2.1
# Local storage
hive: ^1.4.4+1
hive_flutter: ^0.3.1
# Calendar
# table_calendar: ^2.3.1
# Utils
flutter_hooks: ^0.15.0
# Check internet connection
connectivity: ^2.0.2
# Text
recase: ^3.0.1
time: ^1.4.0
# Icons
font_awesome_flutter: ^8.10.0
# Navigation
animated_bottom_navigation_bar: ^0.2.0
# Progress
step_progress_indicator: ^0.2.5+8
dev_dependencies:
flutter_test:
sdk: flutter
# Package required to auto-generate code
build_runner: any
# .env files
# envify_generator: any
# Generator for http client
retrofit_generator: any
pretty_dio_logger: any
# Generator for auto_route
auto_route_generator: any
# Generator annotation for freezed
freezed_annotation: any
# Generator for json_serializable
json_serializable_generator: any
json_annotation: any
# Generator for injectable
injectable_generator: any
# Create testing mock classes
mockito: any
# Usecase class generator
repo_case_generator: any
# App icon generator
flutter_launcher_icons: any
flutter_icons:
android: true
ios: true
image_path: "assets/images/ic_launcher.png"
flutter:
uses-material-design: true
assets:
- assets/fonts/
- assets/images/
# - assets/i18n/
fonts:
- family: Amble
fonts:
- asset: assets/fonts/Amble-Regular.ttf
- asset: assets/fonts/Amble-Italic.ttf
style: italic
- asset: assets/fonts/Amble-Light.ttf
weight: 300
- asset: assets/fonts/Amble-LightItalic.ttf
weight: 300
style: italic
- asset: assets/fonts/Amble-Regular.ttf
weight: 400
- asset: assets/fonts/Amble-Bold.ttf
weight: 600
- asset: assets/fonts/Amble-BoldItalic.ttf
weight: 600
style: italic