olivmir
olivmir

Reputation: 722

Panel component for Vaadin 10 (Flow)

In Vaadin 10 the Panel component isn't existing in the moment.

In Vaadin 8 Panel is a container with a frame around the content and a caption heading. I need exactly this in Vaadin 10 - how to accomplish? Here an example from the Vaadin 8 docs:

Upvotes: 1

Views: 1723

Answers (1)

Steffen Harbich
Steffen Harbich

Reputation: 2749

I think you could easily do this with a VerticalLayout (Div for title + Div for content) and CSS. Unfortunately, they didn't make a corresponding component in Vaadin 10. See docs for an overview of components and their counterparts in Vaadin flow.

Upvotes: 2

Related Questions