2019-02-20 21:12:32 -06:00
|
|
|
name: do_more
|
2019-02-20 21:17:58 -06:00
|
|
|
description: A good lookig glorified todo list.
|
2019-02-20 21:12:32 -06:00
|
|
|
|
|
|
|
|
# The following defines the version and build number for your application.
|
|
|
|
|
# A version number is three numbers separated by dots, like 1.2.43
|
|
|
|
|
# followed by an optional build number separated by a +.
|
|
|
|
|
# Both the version and the builder number may be overridden in flutter
|
|
|
|
|
# build by specifying --build-name and --build-number, respectively.
|
|
|
|
|
# Read more about versioning at semver.org.
|
|
|
|
|
version: 1.0.0+1
|
|
|
|
|
|
|
|
|
|
environment:
|
|
|
|
|
sdk: ">=2.0.0-dev.68.0 <3.0.0"
|
|
|
|
|
|
|
|
|
|
dependencies:
|
|
|
|
|
flutter:
|
|
|
|
|
sdk: flutter
|
|
|
|
|
|
|
|
|
|
# The following adds the Cupertino Icons font to your application.
|
|
|
|
|
# Use with the CupertinoIcons class for iOS style icons.
|
2019-02-27 16:05:10 -06:00
|
|
|
cloud_firestore: ^0.9.0
|
2019-02-20 21:12:32 -06:00
|
|
|
cupertino_icons: ^0.1.2
|
2019-02-21 22:44:08 -06:00
|
|
|
firebase_analytics: ^2.0.2
|
2019-02-20 23:04:43 -06:00
|
|
|
firebase_auth: ^0.8.1
|
2019-02-27 16:05:10 -06:00
|
|
|
firebase_core: ^0.3.0
|
2019-02-20 23:04:43 -06:00
|
|
|
firebase_ml_vision: ^0.6.0
|
|
|
|
|
firebase_storage: ^2.0.1
|
2019-03-10 00:29:31 -06:00
|
|
|
flare_flutter: ^1.3.2
|
2019-03-07 21:57:21 -06:00
|
|
|
font_awesome_flutter: ^8.4.0
|
2019-02-26 20:07:53 -06:00
|
|
|
google_sign_in: ^4.0.1+1
|
2019-02-27 16:05:10 -06:00
|
|
|
http: ^0.12.0
|
|
|
|
|
image_picker: ^0.5.0+3
|
|
|
|
|
mockito: ^4.0.0
|
2019-04-07 20:29:51 -05:00
|
|
|
path_provider: ^0.5.0+1
|
2019-02-27 16:05:10 -06:00
|
|
|
rxdart: ^0.20.0
|
|
|
|
|
sqflite: ^1.1.0
|
2019-02-27 16:41:55 -06:00
|
|
|
uuid: ^2.0.0
|
2019-02-20 21:12:32 -06:00
|
|
|
|
|
|
|
|
dev_dependencies:
|
|
|
|
|
flutter_test:
|
|
|
|
|
sdk: flutter
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# For information on the generic Dart part of this file, see the
|
|
|
|
|
# following page: https://www.dartlang.org/tools/pub/pubspec
|
|
|
|
|
|
|
|
|
|
# The following section is specific to Flutter.
|
|
|
|
|
flutter:
|
2019-03-10 00:29:31 -06:00
|
|
|
assets:
|
|
|
|
|
- assets/animations/loading_logo.flr
|
2019-03-12 21:23:35 -06:00
|
|
|
- assets/animations/loading_animation_looped.flr
|
|
|
|
|
- assets/animations/loading_animation.flr
|
2019-03-10 00:29:31 -06:00
|
|
|
|
2019-03-07 21:57:21 -06:00
|
|
|
fonts:
|
|
|
|
|
- family: IBM Plex Sans
|
|
|
|
|
fonts:
|
|
|
|
|
- asset: assets/fonts/IBMPlexSans-Regular.ttf
|
|
|
|
|
weight: 400
|
|
|
|
|
- asset: assets/fonts/IBMPlexSans-Medium.ttf
|
|
|
|
|
weight: 500
|
|
|
|
|
- asset: assets/fonts/IBMPlexSans-Light.ttf
|
|
|
|
|
weight: 300
|
|
|
|
|
- asset: assets/fonts/IBMPlexSans-Bold.ttf
|
|
|
|
|
weight: 700
|
|
|
|
|
- asset: assets/fonts/IBMPlexSans-SemiBold.ttf
|
|
|
|
|
weight: 600
|
2019-02-20 21:12:32 -06:00
|
|
|
# The following line ensures that the Material Icons font is
|
|
|
|
|
# included with your application, so that you can use the icons in
|
|
|
|
|
# the material Icons class.
|
|
|
|
|
uses-material-design: true
|
|
|
|
|
|