Suggestion: Split ChatScreen.kt into mode-specific files
Category: Large function/file
File: composeApp/src/commonMain/kotlin/com/oak/app/ui/chat/ChatScreen.kt
ChatScreen.kt is 946 lines and contains two entirely distinct screen modes — InteractiveModeScreen (lines 184–451) and ChatModeScreen (lines 454–862) — along with the shared ChatScreen/ChatScreenContent entry points and a helper StreamingMessage composable. Each mode has its own top bar, content layout, and interaction patterns.
Suggested action: Extract InteractiveModeScreen (+ its supporting composables) into a dedicated file and ChatModeScreen (+ StreamingMessage) into another, keeping only the shared entry points in ChatScreen.kt.
Suggestion: Split ChatScreen.kt into mode-specific files
Category: Large function/file
File:
composeApp/src/commonMain/kotlin/com/oak/app/ui/chat/ChatScreen.ktChatScreen.kt is 946 lines and contains two entirely distinct screen modes —
InteractiveModeScreen(lines 184–451) andChatModeScreen(lines 454–862) — along with the sharedChatScreen/ChatScreenContententry points and a helperStreamingMessagecomposable. Each mode has its own top bar, content layout, and interaction patterns.Suggested action: Extract InteractiveModeScreen (+ its supporting composables) into a dedicated file and ChatModeScreen (+ StreamingMessage) into another, keeping only the shared entry points in ChatScreen.kt.