-
Notifications
You must be signed in to change notification settings - Fork 9
/
pubspec.yaml
91 lines (72 loc) · 2.33 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
name: mobidax
description: Cryptocurrency Exchange Software for iOS & Android
version: 1.0.0+1
environment:
sdk: ">=2.1.0 <3.0.0"
flutter: '^2.0.0'
publish_to: none
dependencies:
flutter:
sdk: flutter
# UI TOOLKIT
cupertino_icons: ^0.1.2 # IOS
flutter_swiper: ^1.1.6 # swipe widgets tool
flutter_native_splash: ^0.3.2 # splash screen
flutter_staggered_grid_view: ^0.3.2 # ui grid view
pin_code_fields: ^6.1.0 # text forms
image_picker: ^0.7.4 # image picker tool
image_picker_for_web: ^2.0.0 # image picker tool for web
flutter_svg: ^0.19.3 # Svg displaying tool
qr_flutter: ^3.1.0 # qr codes tool
country_code_picker: ^1.3.15 # Country codes kit
fluttertoast: ^7.1.5 # toasts ui kit
flutter_launcher_icons: ^0.7.3 # launcher icon kit
webviewx: ^0.0.2 #webview tool
# STATE MANAGEMENT
mobidax_redux:
path: ./redux # Redux
# LOCALIZATION
easy_localization: ^2.0.0
flutter_localizations:
sdk: flutter
# APPLICATION
path_provider: ^1.6.10 # Local files path tool
firebase_dynamic_links: ^0.5.1 # Firebase dynamic links
firebase_core: ^0.7.0 # Firebase Core
universal_platform: ^0.1.3 # Detecting platform
url_strategy: ^0.1.1 # Setting the web URL strategy
url_launcher: ^5.7.5 # Launch URLs
simple_gravatar: ^1.0.5 # Gravatar kit
# DEV TOOLS
# In short, dev dependencies are dependencies that are not included
# in our app source code—they are only used in the development environment.
dev_dependencies:
build_runner: ^1.8.0 # generating files using Dart code
device_preview: # Preview app on different devices
#lint: ^1.5.3 # Linter
flutter_test:
sdk: flutter
dependency_overrides:
http: ^0.13.0 # Networking kit
http_parser: ^4.0.0
args: ^2.0.0
flutter_icons:
ios: true
android: true
image_path_ios: "assets/launcher/ios.png"
image_path_android: "assets/launcher/icon.png"
flutter:
uses-material-design: true
assets:
- assets/lang/
- assets/icons/
fonts:
- family: SourceSansPro
fonts:
- asset: assets/fonts/Source_Sans_Pro/SourceSansPro-Regular.ttf
- asset: assets/fonts/Source_Sans_Pro/SourceSansPro-Italic.ttf
style: italic
- asset: assets/fonts/Source_Sans_Pro/SourceSansPro-Bold.ttf
weight: 700
- asset: assets/fonts/Source_Sans_Pro/SourceSansPro-SemiBold.ttf
weight: 500