diff --git a/lib/ui/app/menu_drawer.dart b/lib/ui/app/menu_drawer.dart index 82379ff0a..0ada8f188 100644 --- a/lib/ui/app/menu_drawer.dart +++ b/lib/ui/app/menu_drawer.dart @@ -762,7 +762,12 @@ class _DrawerTileState extends State { ), onTap: onTap, onLongPress: onLongPress, - trailing: isMobile(context) ? iconWidget : null, + trailing: isMobile(context) + ? Padding( + padding: const EdgeInsets.only(right: 12), + child: iconWidget, + ) + : null, ), ), );