-
Notifications
You must be signed in to change notification settings - Fork 0
/
pubspec.yaml
74 lines (54 loc) · 1.55 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
name: estate_project
description: A simple routine checker app made with dart(flutter)
publish_to: 'none' # Remove this line if you wish to publish to pub.dev
version: 1.0.0+1
environment:
sdk: ">=2.16.0 <3.0.0"
dependencies:
flutter:
sdk: flutter
cupertino_icons: ^1.0.2
# get_it for dependency injection
get_it: ^7.2.0
# provider to handle state
provider: ^6.0.1
# dio for network calls
dio: ^4.0.4
# flutter_dotenv for environemtn variables
flutter_dotenv: ^5.0.2
# shared_pref for local storage
shared_preferences: ^2.0.8
# to erase the flutter native white splash screen and give the app a native splash
flutter_native_splash: ^2.2.5
# used in getting the screen sized specufic to the device
flutter_screenutil: ^5.5.3+2
# since we dont have a font saved in a local directory we would be using goggle font for our app typograpgy
google_fonts: ^3.0.1
# the official hive package
hive: ^2.0.5
# a dependency to the hive package
hive_flutter: ^1.1.0
# hepls format our date and time
intl: ^0.17.0
dev_dependencies:
flutter_lints: ^2.0.1
flutter_test:
sdk: flutter
hive_generator: ^1.1.1
build_runner: ^2.1.7
flutter:
uses-material-design: true
assets:
- .env
- assets/
# fonts:
# - family: Schyler
# fonts:
# - asset: fonts/Schyler-Regular.ttf
# - asset: fonts/Schyler-Italic.ttf
# style: italic
# - family: Trajan Pro
# fonts:
# - asset: fonts/TrajanPro.ttf
# - asset: fonts/TrajanPro_Bold.ttf
# weight: 700