Home > OS >  Vaadin - Is there a possibility of using overlays for my own forms?
Vaadin - Is there a possibility of using overlays for my own forms?

Time:03-03

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.

  • Related