mirror of
https://github.com/HendrikRauh/inventree-app.git
synced 2026-01-13 11:36:24 +00:00
Add "customers" button to home screen
This commit is contained in:
parent
d28392bae3
commit
dcfd9d8dd4
1 changed files with 8 additions and 0 deletions
|
|
@ -87,6 +87,7 @@ class _InvenTreeHomePageState extends State<InvenTreeHomePage> {
|
|||
if (!InvenTreeAPI().checkConnection(context)) return;
|
||||
}
|
||||
|
||||
|
||||
void _showSuppliers(BuildContext context) {
|
||||
if (!InvenTreeAPI().checkConnection(context)) return;
|
||||
|
||||
|
|
@ -346,6 +347,13 @@ class _InvenTreeHomePageState extends State<InvenTreeHomePage> {
|
|||
callback: () {
|
||||
_showManufacturers(context);
|
||||
}
|
||||
),
|
||||
_iconButton(
|
||||
L10().customers,
|
||||
FontAwesomeIcons.userTie,
|
||||
callback: () {
|
||||
_showCustomers(context);
|
||||
}
|
||||
),
|
||||
/*
|
||||
Spacer(),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue