public void buildDemo() {
final Button btn = new Button("Save");
btn.addThemeVariants(ButtonVariant.LUMO_ERROR);
final TreeGrid treeGrid = new TreeGrid<GeoTreeNodeEntity>();
mainFlexLayout.add(btn);
mainFlexLayout.add(treeGrid);
}
‘’’
Is there a way to add any Vaadin standard compoent to a View
using Jmix UI?
Might it be useful to have all the standard Vaadin components in the Jmix UI ?