temp hintText

This commit is contained in:
Henry Hiles 2026-03-01 15:02:44 -05:00
commit 9d2fb315d1
No known key found for this signature in database

View file

@ -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,