huextrat / menu_button

Flutter plugin to display a popup menu button widget with handsome design and easy to use.
https://pub.dev/packages/menu_button
MIT License
65 stars 23 forks source link

How do I cancel the built-in border style? #30

Closed shaoting0730 closed 1 year ago

shaoting0730 commented 2 years ago

hello,How do I cancel the built-in border style?

u5ele55 commented 1 year ago

Hello, @pheromone You can provide your own border style with decoration attribute. Instead of "cancelling" border, you can set

decoration: BoxDecoration(
  border: Border.all(
    color: Colors.transparent,
  ),
),

which will create transparent border around button (notice, that popup with items will also have this transparent border).

shaoting0730 commented 1 year ago

thank you. @u5ele55