Hi,
i am using <vaadin.version>24.1.6</vaadin.version> and when i use <dependency>
<groupId>com.vaadin.componentfactory</groupId>
<artifactId>enhanced-dialog</artifactId>
<version>23.1.2</version>
</dependency> in my pom.xml
my code is:
EnhancedDialog dialog = new EnhancedDialog();
dialog.setHeader("Example Header");
dialog.setContent(new Paragraph("test test test "));
dialog.setFooter(new Button("Cancel", evt -> dialog.close()));
Button openDialogButton = new Button("Open Dialog", evt -> dialog.open());
The dialog does not show the component(the paragraph). Is it because of the Vaadin version?
thank you very much.