I'm building a web app using Vaadin framework version 14. I would like to use a layout component add-on that was written for Vaadin 8. I know it's not that easy since they change the approach from basing on the client engine to render everything natively in the browser. But is there a way to add this component anyway? I've searched for any solutions to migrate older components but all I found was just an annotation that they are no longer using old layouts. I have tried using HtmlContainer
Class to create my own CustomLayout
as it's says here but I can only add elements that extend com.vaadin.flow.component.Component and not com.vaadin.ui.AbstractOrderedLayout. Do you have any ideas how to make it work?
Kind regards, Marek