adjusted spacing

This commit is contained in:
NicKoehler 2023-02-15 13:27:21 +01:00
parent 9525960802
commit 957bb65b9f
No known key found for this signature in database
GPG Key ID: BAE01394EB51AC58
2 changed files with 6 additions and 2 deletions

View File

@ -17,7 +17,7 @@ class MenuButton extends StatefulWidget {
required this.icon,
this.splashColor,
this.tooltip = "",
this.padding = const EdgeInsets.all(5),
this.padding = const EdgeInsets.symmetric(horizontal: 2.5, vertical: 5),
this.enableFeedback = true,
});

View File

@ -449,7 +449,11 @@ class _RemoteMenubarState extends State<RemoteMenubar> {
),
child: Row(
mainAxisSize: MainAxisSize.min,
children: menubarItems,
children: [
SizedBox(width: 2.5),
...menubarItems,
SizedBox(width: 2.5)
],
),
),
_buildDraggableShowHide(context),