File tree Expand file tree Collapse file tree
app/src/main/kotlin/com/google/ai/sample/feature/chat Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -198,6 +198,8 @@ fun ChatScreen(
198198 is Command .PressHomeButton -> " Home-Button drücken"
199199 is Command .PressBackButton -> " Zurück-Button drücken"
200200 is Command .ShowRecentApps -> " Übersicht der letzten Apps öffnen"
201+ is Command .ScrollDown -> " Nach unten scrollen"
202+ is Command .ScrollUp -> " Nach oben scrollen"
201203 }
202204
203205 Text (
Original file line number Diff line number Diff line change @@ -121,6 +121,8 @@ class ChatViewModel(
121121 is Command .PressHomeButton -> " Home-Button drücken"
122122 is Command .PressBackButton -> " Zurück-Button drücken"
123123 is Command .ShowRecentApps -> " Übersicht der letzten Apps öffnen"
124+ is Command .ScrollDown -> " Nach unten scrollen"
125+ is Command .ScrollUp -> " Nach oben scrollen"
124126 }
125127 }
126128
@@ -173,6 +175,8 @@ class ChatViewModel(
173175 is Command .PressHomeButton -> " Home-Button drücken"
174176 is Command .PressBackButton -> " Zurück-Button drücken"
175177 is Command .ShowRecentApps -> " Übersicht der letzten Apps öffnen"
178+ is Command .ScrollDown -> " Nach unten scrollen"
179+ is Command .ScrollUp -> " Nach oben scrollen"
176180 }
177181
178182 _commandExecutionStatus .value = " Führe aus: $commandDescription (${index + 1 } /${commands.size} )"
You can’t perform that action at this time.
0 commit comments