chinabrant / popup_menu

🔥A flutter popup menu. Pub enabled.
https://pub.dev/packages/popup_menu
Other
442 stars 136 forks source link

Last line of the menu is not drawn #30

Open dorsamet opened 4 years ago

dorsamet commented 4 years ago

Hi, I'm creating a menu as follows:

                        PopupMenu menu = PopupMenu(
                            maxColumn: 6,
                            lineColor: Colors.grey,
                            items: repository.getAllUsers().map((e) => MenuItem(
                                title: repository.getUserNameForId(e.id),
                            )).toList(),
                            onClickMenu: (item) {

                            }
                        );
                        menu.show(widgetKey: key);

But the last line is not drawn. Please see attached: Screen Shot 2020-10-07 at 17 10 32

This error occurs when creating all number of column number

Please advise