I have an idea to making a form (in Vaadin 14 LTS)which would overlaid main layout for better user experience (like LoginOverlay
). The thing is, vaadin-overlay
is meant only for internal use and I presume I can't use that for my own form... Is there other way to make overlays?
Thanks in advance :)
CodePudding user response:
You can use the Dialog to make an overlay. See https://vaadin.com/docs/latest/ds/components/dialog for code examples.