2
0
mirror of https://github.com/inventree/inventree-app.git synced 2025-06-16 12:15:31 +00:00

Edit attachment (#598)
Some checks failed
CI / test (push) Has been cancelled
iOS / build (push) Has been cancelled
Android / build (push) Has been cancelled

* 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
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,
)
],
)
);
}