15 lines
334 B
Dart
15 lines
334 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
class ChatPage extends StatelessWidget {
|
|
final String roomId;
|
|
const ChatPage({super.key, required this.roomId});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Scaffold(
|
|
appBar: AppBar(title: Text(roomId)),
|
|
body: const Center(child: Text('Chat')),
|
|
);
|
|
}
|
|
}
|