You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
319 B
16 lines
319 B
import 'package:flutter/material.dart';
|
|
|
|
class ChatPage extends StatefulWidget {
|
|
const ChatPage({super.key});
|
|
|
|
@override
|
|
State<ChatPage> createState() => _ChatPageState();
|
|
}
|
|
|
|
class _ChatPageState extends State<ChatPage> {
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Text("聊天页面");
|
|
}
|
|
}
|
|
|