We use cookies to serve our customers and website visitors in the best possible way. Cookies are used for the proper functioning of the website and for improving the user experience, monitoring visitor traffic and marketing purposes. By continuing to browse the site, you agree to our use of cookies. You can read more about cookies here.
com.vaadin.flow.theme.
Class ThemeUtil
- java.lang.Object
-
- com.vaadin.flow.theme.ThemeUtil
-
public final class ThemeUtil extends Object
Utility class for getting default theme and navigation target theme.
-
-
Method Summary
All Methods Modifier and Type Method and Description static ThemeDefinition
findThemeForNavigationTarget(UI ui, Class<?> navigationTarget, String path)
Find annotated theme for navigationTarget on given path or lumo if available.
static Optional<ThemeDefinition>
getLumoThemeDefinition()
Gets the
Lumo
theme definition (default theme) if it's available in the classpath.
-
-
-
Method Detail
-
getLumoThemeDefinition
public static Optional<ThemeDefinition> getLumoThemeDefinition()
Gets the
Lumo
theme definition (default theme) if it's available in the classpath.Returns:
an optional
Lumo
theme definition or an empty optional if it's not in the classpath
-
findThemeForNavigationTarget
public static ThemeDefinition findThemeForNavigationTarget(UI ui, Class<?> navigationTarget, String path)
Find annotated theme for navigationTarget on given path or lumo if available.
Parameters:
ui
- the UI wherenavigationTarget
is expected being registerednavigationTarget
- navigation target to find theme forpath
- path used for navigationReturns:
found theme or lumo if available
-
-