Embed Youtube video

Hello. Is there any working plugin or native object that allows me to integrate a Youtube video in my Vaadin 8 app?

The proper way to to integrate YouTube is to use it with iframe. There are couple of ways how you can do this in Vaadin 8 app. One is to use [BrowserFrame]
(https://vaadin.com/api/framework/8.8.0/com/vaadin/ui/BrowserFrame.html) component, which is actually iframe. You can also try to use iframe in the Label component, as is explained in this StackOverflow answer https://stackoverflow.com/questions/55893776/how-can-i-embed-a-youtube-video/55898239#55898239

It works. Thank you kindly!

Thank you for the solution… Great help