VerticalLayout formLayout = new VerticalLayout();
formLayout.add(nameField);
public class MyUI extends UI {
@Override
protected void init(VaadinRequest vaadinRequest) {
VerticalLayout mainLayout = new VerticalLayout();
MyView view = new MyView();
mainLayout.addComponent(view);
setContent(mainLayout);
}
}