PO Line Item Improvements (#340)

* Refactor thumbnail image

* Add paginated list of purchase order line items

* Refactor getBody() function

- No longer "have" to specify
- Can use getTiles for a simpler interface

* Add detail widget for polineitem

* add pricing info

* Receive line items via action button

* tweak color

* update release notes

* linting fixes
This commit is contained in:
Oliver 2023-04-21 23:15:00 +10:00 committed by GitHub
parent 2c5ceeabdb
commit b7e806efee
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
23 changed files with 442 additions and 343 deletions

View file

@ -147,19 +147,7 @@ class _AttachmentWidgetState extends RefreshableState<AttachmentWidget> {
}
@override
Widget getBody(BuildContext context) {
return Center(
child: ListView(
children: ListTile.divideTiles(
context: context,
tiles: attachmentTiles(context)
).toList(),
)
);
}
List<Widget> attachmentTiles(BuildContext context) {
List<Widget> getTiles(BuildContext context) {
List<Widget> tiles = [];