flet-dev / examples

Flet sample applications
MIT License
420 stars 171 forks source link

Are there any 'checked' menuitem like this? #131

Closed BrentHuang closed 2 months ago

BrentHuang commented 2 months ago

Are there any 'checked' menuitem like this? image

ndonkoHenri commented 2 months ago

Nope, there is no direct 'checked' menuitem. But, you can play with the existing props. Ex: set the MenuItemButton.leading prop to an Icon (checkmark), and switch/remove it in the MenuItemButton.on_click callback.

BrentHuang commented 2 months ago

Thanks, I know I can do this, but it's a bit cumbersome

ndonkoHenri commented 2 months ago

Sorry for that, but you will have to do it that way for now.

Closing this issue as resolved.

BrentHuang commented 2 months ago

PopupMenuItem has 'checked' Property, why not MenuItemButton? @ndonkoHenri

ndonkoHenri commented 2 months ago

Sorry, but all controls are not similar.

BrentHuang commented 2 months ago

Sorry, but all controls are not similar.

In practice, this is a very common menu feature. It is recommended to add it during optimization. The priority can be lowered.