Background
On app start, user must wait for critical data (user profile, initial courses). Implement cache warming: fetch critical data during splash screen, prefetch in background. Dramatically reduces time-to-first-paint and improves cold start experience.
Description
Implement cache warming during splash screen to preload critical data before user reaches home screen.
Current Behavior
User sees blank/loading screen while critical data fetches
Expected Behavior
Critical data fetched during splash screen. Home screen ready instantly.
Impact
⚡ Home screen loads 50%+ faster
✨ No loading spinners on first navigation
🎯 Better first impression
Acceptance Criteria
Implementation Hints
In App.tsx prepareApp, add cache warming fetches. Use Promise.all for parallel loads. Fallback to empty state if fetch fails.
Performance Metrics
Before:
- homeScreenLoadTime: 3-5s after tap
After (Target):
- homeScreenLoadTime: 1-2s (-60%)
Related Issues
Background
On app start, user must wait for critical data (user profile, initial courses). Implement cache warming: fetch critical data during splash screen, prefetch in background. Dramatically reduces time-to-first-paint and improves cold start experience.
Description
Implement cache warming during splash screen to preload critical data before user reaches home screen.
Current Behavior
User sees blank/loading screen while critical data fetches
Expected Behavior
Critical data fetched during splash screen. Home screen ready instantly.
Impact
⚡ Home screen loads 50%+ faster
✨ No loading spinners on first navigation
🎯 Better first impression
Acceptance Criteria
Implementation Hints
In App.tsx prepareApp, add cache warming fetches. Use Promise.all for parallel loads. Fallback to empty state if fetch fails.
Performance Metrics
Before:
After (Target):
Related Issues