Edit attachment (#598)

* Edit attachment

- Allow editing of attachments once updloaed

* Update release notes

* Remove duplicate func
This commit is contained in:
Oliver 2025-01-11 17:11:17 +11:00 committed by GitHub
parent 94d43bc377
commit 1363f7ee3a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 58 additions and 4 deletions

View file

@ -43,7 +43,12 @@ mixin BaseWidgetProperties {
return SingleChildScrollView(
physics: AlwaysScrollableScrollPhysics(),
child: Column(
children: getTiles(context)
children: [
ListView(
children: getTiles(context),
shrinkWrap: true,
)
],
)
);
}