generated from omergamliel3/flutter-clean-architecture-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpubspec.yaml
107 lines (94 loc) · 2.28 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
name: prospera_exercise
description: Prospera exercise
publish_to: "none"
version: 1.0.0+1
environment:
sdk: ">=2.7.0 <3.0.0"
dependencies:
flutter:
sdk: flutter
flutter_localizations:
sdk: flutter
# api integration (based on dio)
retrofit: any
# network info
connectivity: ^0.4.9+3
# functional programming
dartz: ^0.9.2
# helps to compare objects
equatable: ^1.2.5
# json annotation to define annotations used by json_serializable
json_annotation: ^3.1.0
# freezed
freezed_annotation: ^0.12.0
# meta
meta: ^1.2.3
# bloc state managment
flutter_bloc: ^6.0.6
# network
http: ^0.12.2
# device native folders
path_provider: ^1.6.18
# no sql database (local storage)
sembast: ^2.4.7+7
# url helper
url_launcher: ^5.7.2
# simple and efficient Inversion of Control container
kiwi: ^2.1.1
# code linter to improve your code
lint: ^1.3.0
# navigation managment
sailor: ^0.7.1
# persistent storage for simple data
shared_preferences: ^0.5.12+4
# env variables
flutter_dotenv: ^3.1.0
# location service
geolocator: ^6.1.14
# cool loaders
flutter_spinkit: ^4.1.2
dev_dependencies:
# tests
flutter_driver:
sdk: flutter
flutter_test:
sdk: flutter
test: any
# mock library
mockito:
# makes testing blocs and cubits easy
# built to work with bloc and mockito
bloc_test: ^7.1.0
# native icons & splash
# to run in terminal: flutter pub run flutter_launcher_icons:main
flutter_launcher_icons: ^0.8.1
# to run in terminal: flutter pub pub run flutter_native_splash:create
flutter_native_splash: ^0.1.9
# code generators
build_runner: ^1.10.3
# generate data classes
freezed: ^0.12.2
# json serialization, deserialization generator
json_serializable: ^3.5.0
# API integration generator
retrofit_generator: any
# Dependency injection generator
kiwi_generator: ^2.1.1
# flutter icons setup
flutter_icons:
android: true
ios: true
image_path: "assets/app/icon.png"
# flutter splash screen setup
flutter_native_splash:
image: assets/app/splash.png
color: "#FFFF00" # Yellow
android_disable_fullscreen: true
flutter:
uses-material-design: true
# add images, etc from assets folder
assets:
- .env
- lang/en.json
- assets/images/place_holder.jpg
- assets/app/icon.png