对话页面新增,实现最最基础的部分

This commit is contained in:
2026-03-12 01:58:11 +08:00
parent 52beb51a54
commit 1027ce64d2
8 changed files with 550 additions and 36 deletions

View File

@@ -0,0 +1,15 @@
import 'package:flutter/material.dart';
import 'index.dart';
void main() => runApp(const MyChatTestApp());
class MyChatTestApp extends StatelessWidget {
const MyChatTestApp({super.key});
@override
Widget build(BuildContext context) {
return MaterialApp(
debugShowCheckedModeBanner: false,
home: const ChatPage(),
);
}
}