2
0
mirror of https://github.com/inventree/inventree-app.git synced 2026-07-04 11:50:45 +00:00

bigger icons

This commit is contained in:
Oliver Walters
2026-06-25 23:08:26 +10:00
parent 5ca8a1d344
commit 3b8c3b6bfb
2 changed files with 10 additions and 2 deletions
+5 -1
View File
@@ -221,7 +221,11 @@ class _InvenTreeDrawerState extends State<InvenTreeDrawer> {
tiles.add( tiles.add(
ListTile( ListTile(
leading: SvgPicture.asset("assets/image/inventree.svg", height: 24), leading: SvgPicture.asset(
"assets/image/inventree.svg",
height: 32,
width: 32,
),
title: Text( title: Text(
L10().appTitle, L10().appTitle,
style: TextStyle(fontWeight: FontWeight.bold), style: TextStyle(fontWeight: FontWeight.bold),
+5 -1
View File
@@ -547,7 +547,11 @@ class _InvenTreeHomePageState extends State<InvenTreeHomePage>
title: Row( title: Row(
mainAxisAlignment: MainAxisAlignment.center, mainAxisAlignment: MainAxisAlignment.center,
children: [ children: [
SvgPicture.asset("assets/image/inventree.svg", height: 24), SvgPicture.asset(
"assets/image/inventree.svg",
height: 32,
width: 32,
),
SizedBox(width: 8), SizedBox(width: 8),
Text(L10().appTitle), Text(L10().appTitle),
], ],