Is there a way to use an addon from vaadin directory, as i can in CUBA?
Espesialy i would like to use Parity Theme
Is there a way to use an addon from vaadin directory, as i can in CUBA?
Espesialy i would like to use Parity Theme
Hi!
The Jmix Framework does not in any way prevent the use of addons.
All you need to do is add the addon as a project dependency.
dependencies {
...
implementation 'org.vaadin.addons.parttio:parity-theme:1.0.4'
...
}
Don’t forget to also add the maven addon repository:
repositories {
...
maven {
url 'https://maven.vaadin.com/vaadin-addons'
}
...
}
Be careful, there is a bug that removes these dependencies after the update. We are working on fixing it: https://youtrack.jmix.io/issue/JST-4263.
Everything is ready, you can use the addon functionality:
Naturally, in some places you will have to adjust the styles.
Regards,
Dmitriy