mirror of
https://gitlab.com/veilid/veilidchat.git
synced 2025-05-02 06:16:16 -04:00
messages work
This commit is contained in:
parent
f2caa7a0b3
commit
09ae8ff6bb
15 changed files with 246 additions and 414 deletions
|
@ -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(),
|
||||
));
|
||||
}
|
||||
|
|
|
@ -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) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue