feat(mobile): add full-screen voice view with controls

This commit is contained in:
Jannis Braun
2026-03-17 15:47:41 +01:00
parent 913b4c7365
commit 206a0491ea
2 changed files with 220 additions and 1 deletions
@@ -22,7 +22,7 @@ import { MobileYouScreen } from './MobileYouScreen';
import { MobileChatScreen } from './MobileChatScreen';
import { MobileSettingsScreen } from './MobileSettingsScreen';
import { MobileVoiceMiniBar } from './MobileVoiceMiniBar';
const MobileVoiceFullScreen = () => <PlaceholderScreen label="Voice" />;
import { MobileVoiceFullScreen } from './MobileVoiceFullScreen';
const screenMap: Record<string, (params?: Record<string, string>) => React.ReactNode> = {
'channel-chat': (params) => <MobileChatScreen params={params} />,