feat: Complete Flutter app structure for LifeFlow
ADDED:
- analysis_options.yaml (Flutter linting rules)
- .gitignore (Flutter-specific)
- All missing screen files:
- routines/routines_screen.dart
- calendar/calendar_screen.dart
- stats/stats_screen.dart
- settings/settings_screen.dart
- RoutineCard widget with category colors
- Models barrel export (models.dart)
- Fixed AppTheme (removed duplicate class)
APP STRUCTURE:
├── lib/
│ ├── main.dart (entry point with navigation)
│ ├── models/ (Routine, Activity, Gamification)
│ ├── repositories/ (RoutineRepository with Riverpod)
│ ├── screens/ (Dashboard, Routines, Calendar, Stats, Settings)
│ └── theme/ (AppTheme, AppColors)
│
FEATURES READY:
- Bottom navigation (5 tabs)
- Dashboard with progress ring
- Routine cards with category icons
- Settings screen with options
- Light/Dark theme support
- Riverpod state management setup
NOTE: This is a skeleton app that compiles but needs:
- Hive initialization
- Actual data persistence
- Notification setup
- More screen implementations
To build APK, run: flutter build apk --release