Vaadin Flow Basics

All Changes to the Code will be done in the file ListView.java in the package com.example.application.views.list.

src/main/java/com/example/application/views/list/ListView.java

Exercise 1.1

    public ListView() {

        // Display Welcome Message
        add(new H1("Welcome to Our CRM Application"));

    }

Exercise 1.2


    public ListView() {

        // Display Welcome Message
        add(new H1("Welcome to Our CRM Application"));

        Button button = new Button("Click me");

        add(button);

    }

Exercise 1.3

Exercise 1.4

Exercise 1.5

Exercise 1.6

Last updated

Was this helpful?