Вертикальная прокладка плана
- Почему компоненты внутри VerticalLayout размещены с некоторым отступом от края?
- Как решить эту проблему?
Код ниже демонстрирует эту проблему:
@Component
@UIScope
public class TestForm extends CustomComponent {
public TestForm() {
HorizontalLayout hlayout = new HorizontalLayout();
VerticalLayout vlayout = new VerticalLayout();
hlayout.setSizeFull();
vlayout.setStyleName("page");
Label label1 = new Label("Label1");
Label label2 = new Label("Label2");
hlayout.addComponent(label1);
vlayout.addComponent(label2);
hlayout.addComponent(vlayout);
setCompositionRoot(hlayout);
}
}
Результат: введите здесь описание изображения
Спасибо!