# board **Repository Path**: mirrors_vaadin/board ## Basic Information - **Project Name**: board - **Description**: Framework 8 version of vaadin-board - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-11-23 - **Last Updated**: 2026-05-17 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README [![Published on vaadin.com/directory](https://img.shields.io/vaadin-directory/status/vaadin-board.svg)](https://vaadin.com/directory/component/vaadin-board) [![Gitter](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/vaadin/web-components?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge) ### 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](http://vaadin.com/license/cval-3) (CVALv3). For license terms, see LICENSE.txt. ### Installing Add vaadin-board and vaadin-board-precompiled to your project: ``` com.vaadin vaadin-board 1.0.0 com.vaadin vaadin-board-precompiled 1.0.0 ``` ### Basic Use ```java 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](https://demo.vaadin.com/vaadin-board) [Documentation](https://vaadin.com/docs/-/part/board/board-overview.html)