Problem
DashboardScreen.kt is 438 lines. Large screen composables are hard to maintain and test. The screen likely contains header, stats, sync status, and action sections that could be extracted.
Location
app/src/main/java/org/greenstand/android/TreeTracker/dashboard/DashboardScreen.kt
Suggested Fix
Extract logical sections into named sub-composables:
DashboardHeader
DashboardStats
SyncStatusSection
DashboardActions
Keep the top-level DashboardScreen as a composition of these smaller components.
Effort
Medium
Problem
DashboardScreen.ktis 438 lines. Large screen composables are hard to maintain and test. The screen likely contains header, stats, sync status, and action sections that could be extracted.Location
app/src/main/java/org/greenstand/android/TreeTracker/dashboard/DashboardScreen.ktSuggested Fix
Extract logical sections into named sub-composables:
DashboardHeaderDashboardStatsSyncStatusSectionDashboardActionsKeep the top-level
DashboardScreenas a composition of these smaller components.Effort
Medium