Fluent UI - Vaadin Add-on Directory
Provides a fluent api to create UI ComponentsBenefit in short: Instead of:
Label l1 = new Label();
l1.setCaption("foo");
l1.setWidth("100%");
l1.setHeight("100%");
write:
Label l2 = FluentUI.label("foo").width("100%").height("100%").get();
This project aims to support all UI Components with a fluent api and add helpful shortcuts.
Source CodeAuthor Homepage
Issue Tracker
Fluent UI version 0.1.0
Initial release of generated fluent api. currently under dev.