🐛 Fix room input

This commit is contained in:
2025-08-07 12:04:47 +08:00
parent 30b8a6c30f
commit f00135c4bf
2 changed files with 8 additions and 7 deletions

View File

@@ -1061,14 +1061,14 @@ class _ChatInput extends HookConsumerWidget {
children: [
if (attachments.isNotEmpty)
SizedBox(
height: 280,
height: 324,
child: ListView.separated(
padding: EdgeInsets.symmetric(horizontal: 12),
scrollDirection: Axis.horizontal,
itemCount: attachments.length,
itemBuilder: (context, idx) {
return SizedBox(
height: 280,
height: 320,
width: 280,
child: AttachmentPreview(
item: attachments[idx],