https://github.com/vaadin-component-factory/vcf-gridlayout
Grid Layout for Vaadin Flow
https://github.com/vaadin-component-factory/vcf-gridlayout
Last synced: 3 months ago
JSON representation
Grid Layout for Vaadin Flow
- Host: GitHub
- URL: https://github.com/vaadin-component-factory/vcf-gridlayout
- Owner: vaadin-component-factory
- License: apache-2.0
- Created: 2021-12-07T20:13:37.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2024-02-05T11:31:57.000Z (over 1 year ago)
- Last Synced: 2025-01-10T00:36:32.627Z (4 months ago)
- Language: Java
- Size: 41 KB
- Stars: 0
- Watchers: 3
- Forks: 2
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Grid Layout component for Vaadin Flow
This component recreates some of the functionalities of Vaadin 7 Grid Layout component for Vaadin Flow.
This component is part of Vaadin Component Factory.
## Description
Grid Layout component provides support to the following features:
- Create a GridLayout with predefined number of columns & rows
- Set spacing & margin
- Add components## Development instructions
- Build the project and install the add-on locally:
```
mvn clean install
```
- For starting the demo server go to vcf-gridlayout-demo and run:
```
mvn jetty:run
```
This deploys demo at http://localhost:8080## How to use it
Just create a Grid Layout component in the same way as in Vaadin 7.
For example:
```java
GridLayout grid = new GridLayout(4, 4);
```## Missing features or bugs
You can report any issue or missing feature on [GitHub](https://github.com/vaadin-component-factory/vcf-gridlayout/issues).
## License
Apache License 2.0.