feat(mobile): add MobileChatScreen with back nav and member list access

This commit is contained in:
Jannis Braun
2026-03-17 15:36:50 +01:00
parent eac4e5f5eb
commit e45bf1927e
2 changed files with 87 additions and 1 deletions
@@ -17,7 +17,7 @@ import { MobileSpacesScreen } from './MobileSpacesScreen';
// These will be replaced with real imports as each task is completed:
const MobileDmsScreen = () => <PlaceholderScreen label="DMs" />;
const MobileYouScreen = () => <PlaceholderScreen label="You" />;
const MobileChatScreen = ({ params: _params }: { params?: Record<string, string> }) => <PlaceholderScreen label="Chat" />;
import { MobileChatScreen } from './MobileChatScreen';
const MobileSettingsScreen = ({ initialPanel: _p }: { initialPanel?: string }) => <PlaceholderScreen label="Settings" />;
const MobileVoiceMiniBar = () => null;
const MobileVoiceFullScreen = () => <PlaceholderScreen label="Voice" />;