Add maximize support and some other stuff

This commit is contained in:
Henry Hiles 2026-01-08 20:11:10 -05:00
commit baf26d0ec9
No known key found for this signature in database
4 changed files with 50 additions and 15 deletions

View file

@ -45,6 +45,7 @@ class ChatBox extends HookConsumerWidget {
}
void send() {
if (controller.value.text.isEmpty) return;
ref
.watch(RoomChatController.provider(room).notifier)
.send(

View file

@ -22,6 +22,8 @@ class MentionOverlay extends ConsumerWidget {
super.key,
});
// TODO: Don't embed mentions
@override
Widget build(BuildContext context, WidgetRef ref) => Padding(
padding: EdgeInsets.all(8),