- Add NotificationService for handling local notifications. - Introduce StorageService for key-value storage using SharedPreferences. - Create DeviceLocation model to represent geographic locations. - Define LocationPermissionStatus enum for managing location permissions. - Implement BackgroundGeofenceService for periodic geofence checks while clocked in. - Develop GeofenceServiceImpl for geofence proximity verification using LocationService. - Create GeofenceResult model to encapsulate geofence check results. - Define GeofenceServiceInterface for geofence service abstraction. - Implement GeofenceBloc to manage geofence verification and background tracking. - Create events and states for GeofenceBloc to handle various geofence scenarios. - Add GeofenceStatusBanner widget to display geofence verification status in the UI.
34 lines
631 B
YAML
34 lines
631 B
YAML
name: krow_core
|
|
description: Core utilities and shared logic.
|
|
version: 0.0.1
|
|
publish_to: none
|
|
resolution: workspace
|
|
|
|
environment:
|
|
sdk: '>=3.10.0 <4.0.0'
|
|
flutter: ">=3.0.0"
|
|
|
|
dependencies:
|
|
flutter:
|
|
sdk: flutter
|
|
|
|
# internal packages
|
|
krow_domain:
|
|
path: ../domain
|
|
design_system:
|
|
path: ../design_system
|
|
|
|
flutter_bloc: ^8.1.0
|
|
equatable: ^2.0.8
|
|
flutter_modular: ^6.4.1
|
|
dio: ^5.9.1
|
|
image_picker: ^1.1.2
|
|
path_provider: ^2.1.3
|
|
file_picker: ^8.1.7
|
|
record: ^6.2.0
|
|
firebase_auth: ^6.1.4
|
|
geolocator: ^14.0.2
|
|
flutter_local_notifications: ^21.0.0
|
|
shared_preferences: ^2.5.4
|
|
workmanager: ^0.9.0+3
|