FlowUI problem showing images

Hi, I’m trying the FlowUI, but I cannot figure out how to show an image.
I’m trying to edit the login-view.xml to add an image before the input form for username and password, but no matter how method I try, always results in an error.
Here is a view of the xml and the project:
imagen
The run always ends with this error:
imagen
Maybe I’m doing something wrong but I can’t figure out what.

TIA

Germán Turriziani

Hi @neosoft.gt
I just checked the groupBox you have used but didn’t find it in FlowUI, maybe still not released.
image

Did you try the use of alternatives?

Hi Mortoza, thanks for your reply.
It was one of my assumptions, but since my trial subscription expired I can’t use the screen designer to confirm it.
I’ll try an alternative like you suggest.
Thank you very much.

There is no Image component in Flow UI XML yet, it’s on the roadmap: #1154.

Here you can look at how to use the Vaadin’s Image component programmatically in a view: UserDetailView.java.

Also, use details container instead of groupBox:

<details summaryText="Some details" opened="true">
    <div text="Hello World"/>
</details>

Thank you very much for yor reply Konstantin!.