in ui/lib/app_drawer.dart [38:75]
return ListTile(
title: Padding(
padding: const EdgeInsets.only(left: 5.0),
child: Row(
children: [
Icon(iconData),
SizedBox(width: 10),
Text(menuItemText, style: Theme.of(context).textTheme.bodyMedium),
settings
? Row(
children: [
SizedBox(width: 10),
IconButton(
icon: new Icon(Icons.settings),
onPressed: () => context.go('/settings'),
),
],
)
: Container(),
notification
? Row(
children: [
SizedBox(width: 70),
Chip(
padding: EdgeInsets.all(0),
backgroundColor: Colors.red,
label: Text('5', style: TextStyle(color: Colors.white)),
),
],
)
: Container(),
],
),
),
dense: true,
onTap: () {
context.go('/' + dest);
},