This repository has been archived by the owner on Jul 11, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
pubspec.yaml
82 lines (64 loc) · 3.41 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
name: hash_checker_2
description: Fast and simple application that allows you to generate and compare hashes from files and text
publish_to: 'none'
version: 1.0.0+1
environment:
sdk: ">=2.17.0 <3.0.0"
dependencies:
flutter:
sdk: flutter
# MobX is a library for reactively managing the state of your applications.
# Use the power of observables, actions, and reactions to supercharge your Dart and Flutter apps.
# See the following link for more information: https://pub.dev/packages/mobx
mobx: ^2.0.7
# Flutter integration for MobX. It provides a set of Observer widgets
# that automatically rebuild when the tracked observables change.
# See the following link for more information: https://pub.dev/packages/flutter_mobx
flutter_mobx: ^2.0.6
# A wrapper around InheritedWidget to make them easier to use and more reusable.
# See the following link for more information: https://pub.dev/packages/provider
provider: ^6.0.3
# AutoRoute is a declarative routing solution, where everything needed
# for navigation is automatically generated for you.
# See the following link for more information: https://pub.dev/packages/auto_route
auto_route: ^4.2.1
# Implementations of SHA, MD5, and HMAC cryptographic functions
# See the following link for more information: https://pub.dev/packages/crypto
crypto: ^3.0.2
# Flutter plugin for reading and writing simple key-value pairs.
# Wraps NSUserDefaults on iOS and SharedPreferences on Android.
# See the following link for more information: https://pub.dev/packages/shared_preferences
shared_preferences: ^2.0.15
# A package that allows you to use a native file explorer to pick single
# or multiple absolute file paths, with extension filtering support.
# See the following link for more information: https://pub.dev/packages/file_picker
file_picker: 5.0.1
# Dialogs for picking and saving files in Android and in iOS.
# See the following link for more information: https://pub.dev/packages/flutter_file_dialog
flutter_file_dialog: ^2.3.0
# Flutter plugin for querying information about the application package,
# such as CFBundleVersion on iOS or versionCode on Android.
# See the following link for more information: https://pub.dev/packages/package_info_plus
package_info_plus: ^1.4.3
# Flutter plugin for launching a URL. Supports web, phone, SMS, and email schemes.
# See the following link for more information: https://pub.dev/packages/url_launcher
url_launcher: ^6.1.5
dev_dependencies:
flutter_test:
sdk: flutter
# Recommended lints for Flutter apps, packages, and plugins to encourage good coding practices.
# See the following link for more information: https://pub.dev/packages/flutter_lints
flutter_lints: ^2.0.1
# A build system for Dart code generation and modular compilation.
# See the following link for more information: https://pub.dev/packages/build_runner
build_runner: ^2.2.0
# Code generator for MobX that adds support for annotating your code
# with @observable, @computed, @action and also creating Store classes.
# See the following link for more information: https://pub.dev/packages/mobx_codegen
mobx_codegen: ^2.0.7
# AutoRoute is a declartive routing solution, where everything needed
# for navigation is automatically generated for you.
# See the following link for more information: https://pub.dev/packages/auto_route_generator
auto_route_generator:
flutter:
uses-material-design: true