Just a behavior question. If I wanted to render a ...
# doodle
a
Just a behavior question. If I wanted to render a menu in a circle as opposed to in a straight line, how should I go about doing it?
n
also consider whether you should roll your own View for this. you can show any View as a modal/popup. so you could create a Container with your circular layout and the items. then show it as a modal/popup to get the custom menu you’d like. assuming you only have a single-level menu.
a
Would the process look different for a multi-level menu?
n
not really. you could show a new popup for each new level in the menu. the big difference is you’d need to be careful with hit detection to ensure the underlying items from previous levels are interactive while sub levels are visible. this isn’t an issue for the linear menu b/c it never really overlaps levels.