Skip to content
forked from vaadin/board

Framework 8 version of vaadin-board

License

Notifications You must be signed in to change notification settings

chrisnaan/board

 
 

Repository files navigation

Published on vaadin.com/directory

Gitter

Overview

Vaadin addon allows to create flexible responsive layouts and build nice looking dashboard. Vaadin Board key feature is how it effectively reorders UI components on different screen sizes, maximizing the use of space and looking stunning.

Board requires Vaadin Framework 8.1 or newer.

License & Author

This Add-on is distributed under Commercial Vaadin Add-on License version 3 (CVALv3). For license terms, see LICENSE.txt.

Installing

Add vaadin-board and vaadin-board-precompiled to your project:

<dependencies>
  <dependency>
    <groupId>com.vaadin</groupId>
    <artifactId>vaadin-board</artifactId>
    <version>1.0.0</version>
  </dependency>
  <dependency>
    <groupId>com.vaadin</groupId>
    <artifactId>vaadin-board-precompiled</artifactId>
    <version>1.0.0</version>
  </dependency>
</dependencies>

Basic Use

Board board = new Board();
board.setSizeFull();

Label lbl1 =  new Label("LABEL1");
Label lbl2 =  new Label("LABEL2");
Label lbl3 =  new Label("LABEL3");
Label lbl4 =  new Label("LABEL4");

board.addRow(lbl1, lbl2, lbl3, lbl4);
setContent(board);

Demo

Documentation

About

Framework 8 version of vaadin-board

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Java 95.7%
  • CSS 1.9%
  • JavaScript 1.3%
  • Other 1.1%