- Test loading tasks with success and error states
- Test priority sorting (high > medium > low)
- Test filter functionality (all, active, completed)
- Test task toggle and delete operations
- Test date navigation (previousDay, nextDay)
- Use mocktail for repository mocking
- Test task creation with title and priority
- Test task toggle completion functionality
- Test filter chips (all, active, completed)
- Test date navigation between days
- Verify localization integration
- Add logoutConfirmation key to English and German ARB files
- Update settings page to use localized string instead of hardcoded text
- Regenerate localization files
- Add AppConfig class for dev/prod environment settings
- Create main_dev.dart and main_prod.dart entry points
- Update datasources to use centralized API URL config
- Support --dart-define=ENV for runtime configuration
- Add back button on login page for first-time online mode setup
- Allow users to return to setup screen and change their mode selection
- Add backToSetup localization string for English and German
- Display current app mode in settings
- Add dialog to switch between local and online modes
- Fix logout to reset setup state and return to setup screen
- Add setup and onboarding routes to router
- Implement redirect logic for setup, onboarding, and mode checks
- Register local database and task datasource in DI container
- Add mode-aware task repository factory
- Create SetupPage for choosing local or online mode
- Create OnboardingPage with 3-slide tutorial
- Explain Eisenhower Method and ALPEN planning approach
- Create TaskLocalDataSource for Drift database operations
- Implement LocalTaskRepositoryImpl with same interface as remote
- Support full CRUD operations for offline task management
- Create auth feature with Clean Architecture (domain/data/presentation)
- Add login and register pages with form validation
- Implement secure token storage with flutter_secure_storage
- Create AuthenticatedClient for automatic Bearer token headers
- Add AuthViewModel for global auth state management
- Update router with auth guards (redirect to login if not authenticated)
- Add logout option to settings page
- Update TaskRemoteDataSource to use authenticated client
- Add auth-related localization strings (EN/DE)
- Create User model with bcrypt password hashing
- Add auth routes: register, login, refresh, me
- Implement JWT access and refresh tokens
- Add get_current_user dependency for protected routes
- Update Task model with user_id foreign key for data isolation
- Update TaskService to filter tasks by authenticated user
- Add auth configuration (secret key, token expiry)
- Enlarge calendar priority dots to 10px with pulsing animation
- Increase task tile checkbox and menu button containers to 48x48
- Add proper minVerticalPadding to task tiles (72dp height)
- Update filter chips with MaterialTapTargetSize.padded
- Increase navigation buttons to 48x48 with 28px icons
- Update task form with 48dp height segmented button
- Fix calendar navigation using ValueKey to force rebuild
- Add colored dots on calendar days with tasks (red/orange/green)
- Show highest priority of incomplete tasks for each day
- Add subtle pulsing animation to task indicators
- Load tasks for visible month when calendar opens
- Add date parameter support to DailyAgendaPage for calendar navigation
- Add popup menu to task tile with delete and reschedule options
- Set default locale to English when none is saved
- Update API base URL comment for desktop vs Android
- Update localization imports to use package path
- Remove unused provider import from main.dart
- Fix default test file
- Refactor settings dialogs to use Radio widget