Telas de login e dashboard de estudante feito
This commit is contained in:
120
pubspec.yaml
120
pubspec.yaml
@@ -1,5 +1,5 @@
|
||||
name: teachit
|
||||
description: "A new Flutter project."
|
||||
description: "AI Study Assistant - Educational Intelligence Platform"
|
||||
# The following line prevents the package from being accidentally published to
|
||||
# pub.dev using `flutter pub publish`. This is preferred for private packages.
|
||||
publish_to: 'none' # Remove this line if you wish to publish to pub.dev
|
||||
@@ -30,21 +30,91 @@ environment:
|
||||
dependencies:
|
||||
flutter:
|
||||
sdk: flutter
|
||||
flutter_localizations:
|
||||
sdk: flutter
|
||||
|
||||
# The following adds the Cupertino Icons font to your application.
|
||||
# Use with the CupertinoIcons class for iOS style icons.
|
||||
cupertino_icons: ^1.0.8
|
||||
# State Management
|
||||
flutter_riverpod: ^2.4.9
|
||||
riverpod_annotation: ^2.3.3
|
||||
|
||||
# Navigation
|
||||
go_router: ^12.1.3
|
||||
flutter_animate: ^4.2.0+1
|
||||
|
||||
# Firebase
|
||||
firebase_core: ^2.25.4
|
||||
firebase_auth: ^4.17.8
|
||||
cloud_firestore: ^4.15.8
|
||||
firebase_storage: ^11.6.9
|
||||
firebase_analytics: ^10.8.0
|
||||
firebase_messaging: ^14.9.3
|
||||
google_sign_in: ^6.2.1
|
||||
crypto: ^3.0.3
|
||||
firebase_crashlytics: ^3.5.7
|
||||
|
||||
# UI Components
|
||||
cupertino_icons: ^1.0.6
|
||||
google_fonts: ^6.1.0
|
||||
cached_network_image: ^3.3.0
|
||||
flutter_svg: ^2.0.9
|
||||
lottie: ^2.7.0
|
||||
shimmer: ^3.0.0
|
||||
flutter_staggered_animations: ^1.1.1
|
||||
|
||||
# HTTP & Networking
|
||||
dio: ^5.4.0
|
||||
http: ^1.1.2
|
||||
connectivity_plus: ^5.0.2
|
||||
retry: ^3.1.2
|
||||
|
||||
# Local Storage
|
||||
shared_preferences: ^2.2.2
|
||||
hive: ^2.2.3
|
||||
hive_flutter: ^1.1.0
|
||||
flutter_secure_storage: ^9.0.0
|
||||
path_provider: ^2.1.1
|
||||
|
||||
# Utilities
|
||||
intl: ^0.20.2
|
||||
uuid: ^4.2.1
|
||||
equatable: ^2.0.5
|
||||
json_annotation: ^4.8.1
|
||||
freezed_annotation: ^2.4.1
|
||||
collection: ^1.18.0
|
||||
|
||||
# File Handling
|
||||
# file_picker: ^6.1.1 # Temporarily disabled due to compatibility issues
|
||||
image_picker: ^1.0.4
|
||||
permission_handler: ^11.0.1
|
||||
path: ^1.8.3
|
||||
|
||||
# Charts & Graphs
|
||||
fl_chart: ^0.64.0
|
||||
|
||||
# Biometrics
|
||||
local_auth: ^2.1.7
|
||||
|
||||
# WebView
|
||||
webview_flutter: ^4.4.2
|
||||
|
||||
dev_dependencies:
|
||||
flutter_test:
|
||||
sdk: flutter
|
||||
integration_test:
|
||||
sdk: flutter
|
||||
|
||||
# The "flutter_lints" package below contains a set of recommended lints to
|
||||
# encourage good coding practices. The lint set provided by the package is
|
||||
# activated in the `analysis_options.yaml` file located at the root of your
|
||||
# package. See that file for information about deactivating specific lint
|
||||
# rules and activating additional ones.
|
||||
flutter_lints: ^6.0.0
|
||||
flutter_lints: ^3.0.1
|
||||
build_runner: ^2.4.7
|
||||
riverpod_generator: ^2.3.9
|
||||
json_serializable: ^6.7.1
|
||||
freezed: ^2.4.6
|
||||
hive_generator: ^2.0.1
|
||||
mockito: ^5.4.4
|
||||
|
||||
# For information on the generic Dart part of this file, see the
|
||||
# following page: https://dart.dev/tools/pub/pubspec
|
||||
@@ -56,34 +126,20 @@ flutter:
|
||||
# included with your application, so that you can use the icons in
|
||||
# the material Icons class.
|
||||
uses-material-design: true
|
||||
|
||||
assets:
|
||||
- assets/images/
|
||||
- assets/icons/
|
||||
- assets/animations/
|
||||
- lib/l10n/
|
||||
|
||||
# To add assets to your application, add an assets section, like this:
|
||||
# assets:
|
||||
# - images/a_dot_burr.jpeg
|
||||
# - images/a_dot_ham.jpeg
|
||||
|
||||
# An image asset can refer to one or more resolution-specific "variants", see
|
||||
# https://flutter.dev/to/resolution-aware-images
|
||||
|
||||
# For details regarding adding assets from package dependencies, see
|
||||
# https://flutter.dev/to/asset-from-package
|
||||
|
||||
# To add custom fonts to your application, add a fonts section here,
|
||||
# in this "flutter" section. Each entry in this list should have a
|
||||
# "family" key with the font family name, and a "fonts" key with a
|
||||
# list giving the asset and other descriptors for the font. For
|
||||
# example:
|
||||
# fonts:
|
||||
# - family: Schyler
|
||||
# - family: Inter
|
||||
# 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
|
||||
# - asset: assets/fonts/Inter-Regular.ttf
|
||||
# - asset: assets/fonts/Inter-Medium.ttf
|
||||
# weight: 500
|
||||
# - asset: assets/fonts/Inter-SemiBold.ttf
|
||||
# weight: 600
|
||||
# - asset: assets/fonts/Inter-Bold.ttf
|
||||
# weight: 700
|
||||
#
|
||||
# For details regarding fonts from package dependencies,
|
||||
# see https://flutter.dev/to/font-from-package
|
||||
|
||||
Reference in New Issue
Block a user