Working on Parsing room server messages.

This commit is contained in:
Winston Lowe
2026-01-08 12:58:27 -08:00
parent 35e866abfb
commit fca810737d
2 changed files with 1238 additions and 1 deletions
+2 -1
View File
@@ -22,6 +22,7 @@ import '../widgets/room_login_dialog.dart';
import '../widgets/unread_badge.dart'; import '../widgets/unread_badge.dart';
import 'channels_screen.dart'; import 'channels_screen.dart';
import 'chat_screen.dart'; import 'chat_screen.dart';
import 'room_chat_screen.dart';
import 'map_screen.dart'; import 'map_screen.dart';
import 'repeater_hub_screen.dart'; import 'repeater_hub_screen.dart';
import 'settings_screen.dart'; import 'settings_screen.dart';
@@ -450,7 +451,7 @@ class _ContactsScreenState extends State<ContactsScreen>
Navigator.push( Navigator.push(
context, context,
MaterialPageRoute( MaterialPageRoute(
builder: (context) => ChatScreen(contact: room), builder: (context) => RoomChatScreen(contact: room),
), ),
); );
}, },
File diff suppressed because it is too large Load Diff