Non modal windows or movable menus
-
As part of an app I am developing, I (currently) have a persistent sharing menu that works in the following way:
- The user clicks on the menu which brings up the sharing interface (as a persistent menu)
- The user can continue to configure things in the background (or not) before getting their share link (which is affected by the background choices) and dismissing the menu
The problem with my approach above is that the menu can obscure some things in the background, so I would like it to be movable. So I either need a way to move the menu around the screen or to use a q-dialog I suppose. But I can’t find examples of either, can anyone offer advice?
-
@ssuess have you seen qwindow ae? https://github.com/quasarframework/app-extension-qwindow
-
@metalsadman I was unaware of this extension, I will check it out, thanks!