messages work

This commit is contained in:
Christien Rioux 2024-02-08 20:35:59 -05:00
parent f2caa7a0b3
commit 09ae8ff6bb
15 changed files with 246 additions and 414 deletions

View file

@ -35,6 +35,6 @@ class ChatOnlyPageState extends State<ChatOnlyPage>
Widget build(BuildContext context) => SafeArea(
child: GestureDetector(
onTap: () => FocusScope.of(context).requestFocus(_unfocusNode),
child: buildChatComponent(),
child: const ChatComponent(),
));
}

View file

@ -73,7 +73,7 @@ class HomeAccountReadyState extends State<HomeAccountReady>
builder: (context) =>
Material(color: Colors.transparent, child: buildUserPanel()));
Widget buildTabletRightPane(BuildContext context) => buildChatComponent();
Widget buildTabletRightPane(BuildContext context) => const ChatComponent();
// ignore: prefer_expression_function_bodies
Widget buildTablet(BuildContext context) {