Use Polymer Component in Java Application

I would like to use https://github.com/Collaborne/paper-fab-speed-dial in a Java-based Vaadin 12 project. I tried to wrap it in a Java class but was unable to get it to work. Can anybody provide an example of how I could integrate this into a Java application?

Thanks,
Steve

Hi Steven. Have you checked out our documentation https://vaadin.com/docs/v12/flow/web-components/integrating-a-web-component.html ? It goes through all the steps you need to take in order to get started with creating a Java API and even publishing the web component for others.

For examples on the Java API for integrated web components, you can take a look at any of the Vaadin components’ sources. Another alternative is to look what other community members have done in their add-ons which are available in vaadin.com/directory.

Cheers, Pekka

Yes, that worked! The issues I was having was with the HtmlImport.

Thanks again!