🐛 Fix compose article unable to scroll close #194

This commit is contained in:
2025-11-24 22:30:56 +08:00
parent 5663df6ef1
commit 98df275f88

View File

@@ -256,7 +256,9 @@ class ArticleComposeScreen extends HookConsumerWidget {
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
ComposeFormFields(
Expanded(
child: SingleChildScrollView(
child: ComposeFormFields(
state: state,
showPublisherAvatar: false,
onPublisherTap: () {
@@ -271,6 +273,8 @@ class ArticleComposeScreen extends HookConsumerWidget {
});
},
).padding(top: 16),
),
),
// Attachments preview
ValueListenableBuilder<List<UniversalFile>>(