From 9d2fb315d166581357e3fb83326970e0f59e51ca Mon Sep 17 00:00:00 2001 From: Henry-Hiles Date: Sun, 1 Mar 2026 15:02:44 -0500 Subject: [PATCH] temp hintText --- lib/widgets/chat_page/chat_box.dart | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/lib/widgets/chat_page/chat_box.dart b/lib/widgets/chat_page/chat_box.dart index 46c8599..db51271 100644 --- a/lib/widgets/chat_page/chat_box.dart +++ b/lib/widgets/chat_page/chat_box.dart @@ -112,7 +112,7 @@ class ChatBox extends HookConsumerWidget { PopupMenuItem( child: ListTile( title: Text("Files"), - leading: Icon(Icons.add_photo_alternate), + leading: Icon(Icons.attachment), ), ), ], @@ -142,9 +142,10 @@ class ChatBox extends HookConsumerWidget { maxLines: 12, minLines: 1, decoration: InputDecoration( - // hintText: room.canSendDefaultMessages - // ? "Your message here..." - // : "You don't have permission to send messages in this room...", + hintText: + true // TODO: room.canSendDefaultMessages + ? "Your message here..." + : "You don't have permission to send messages in this room...", border: InputBorder.none, ), controller: controller.value,