Flutter menuBar: how to remove background/border?
MenuBar(children: [
MenuItemButton(child: Text('Login')),
MenuItemButton(child: Text('Register')),
])
--------------------
| Login Register |
--------------------
How to remove background (to be transparent) and border?
Login Register
You can use
styleproperty andMenuStyleclass (https://api.flutter.dev/flutter/material/MenuStyle-class.html):elevationshould be set to0(otherwise, with aColor.transparent, you'll see the widget's shadow).Here's a full example. Changing
backgroundColorproperty ofScaffoldwill demonstrate thatMenuBaris effectively transparent, shadowless and with rectangular borders: