mirror of
https://github.com/HendrikRauh/inventree-app.git
synced 2026-01-13 03:26:24 +00:00
Major overhaul of "paginated list" widget class
- Simplify implementation - Create mixin class for code reuse - Allow custom app-bar - Allow custom ordering / sorting options - Improve code commenting / readability
This commit is contained in:
parent
979f950129
commit
7301243ed6
6 changed files with 143 additions and 134 deletions
|
|
@ -354,7 +354,9 @@ class _PartDisplayState extends RefreshableState<PartDetailWidget> {
|
|||
Navigator.push(
|
||||
context,
|
||||
MaterialPageRoute(
|
||||
builder: (context) => BomList(part)
|
||||
builder: (context) => PaginatedBomList({
|
||||
"part": part.pk.toString(),
|
||||
})
|
||||
)
|
||||
);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue