moved roomserver chat into chat_screen

This commit is contained in:
Winston Lowe
2026-01-09 23:44:42 -08:00
parent f3aef42331
commit ab7cc84db5
3 changed files with 65 additions and 1252 deletions
+1 -2
View File
@@ -22,7 +22,6 @@ import '../widgets/room_login_dialog.dart';
import '../widgets/unread_badge.dart';
import 'channels_screen.dart';
import 'chat_screen.dart';
import 'room_chat_screen.dart';
import 'map_screen.dart';
import 'repeater_hub_screen.dart';
import 'settings_screen.dart';
@@ -451,7 +450,7 @@ class _ContactsScreenState extends State<ContactsScreen>
Navigator.push(
context,
MaterialPageRoute(
builder: (context) => RoomChatScreen(contact: room),
builder: (context) => ChatScreen(contact: room),
),
);
},