implemented IconPicker for Car class

This commit is contained in:
2022-11-16 22:54:45 -05:00
parent bc0e5f1fea
commit 4cfffa59f9
89 changed files with 342 additions and 60 deletions

View File

@@ -70,6 +70,20 @@ class MyDrawer extends StatelessWidget {
print('dbsetup');
},
),
ListTile(
leading: const Icon(Icons.tune),
title: const Text('IconPicker'),
onTap: () {
showDialog(
barrierColor: Colors.black.withOpacity(.5),
context: context,
builder: (BuildContext context) {
return IconPicker();
});
/* Navigator.of(context).push(
MaterialPageRoute(builder: (context) => IconPicker())); */
},
),
ListTile(
leading: const Icon(Icons.info_outline),
title: const Text('About'),