24
This commit is contained in:
22
lib/pages/dashboard/chat_room.dart
Normal file
22
lib/pages/dashboard/chat_room.dart
Normal file
@@ -0,0 +1,22 @@
|
||||
import 'package:flutter/material.dart';
|
||||
|
||||
class ChatRoom extends StatelessWidget {
|
||||
final String? roomId;
|
||||
const ChatRoom({super.key, required this.roomId});
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
return Material(
|
||||
child: Center(
|
||||
child: Column(
|
||||
mainAxisSize: MainAxisSize.min,
|
||||
children: [
|
||||
Text('id: ${roomId}',style: TextStyle(fontSize: 32)),
|
||||
const SizedBox(height: 16,),
|
||||
Text('交流区正在建设中...',style: TextStyle(fontSize: 32),),
|
||||
],
|
||||
),
|
||||
),
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user