Hi, nice component, How is it possible to block 100% height of the conten

Hi, nice component,

How is it possible to block 100% height of the content area ?
What i need is to avoid content scroll.

i’m using code like this

.add(new LeftNavigationItem(cs.getI18n("contacts"), VaadinIcon.USER.create(), ViewContact.class))

Thanks

Have you tried setting the height of ViewContact.class to 100%?

Hi, thanks for the reply,

yes, i already tried width setSizeFull(), so strange.

The layout is generated by this code:

final LeftLayouts.LeftHybrid appLayout = AppLayoutBuilder.get(LeftLayouts.LeftHybrid.class)
		.withTitle("test")
		.withAppBar(appBar)
		.withIconComponent(logo)
		.withAppMenu(loadMenuLayout()).build();

Regards

I had the same problem I called the setSizeFull() method but nothing happened. I used LeftLeftHybridResponsive layout and when I changed it to LeftHybrid it worked.