org.bklab.flow.util.predicate.MobileBrowserPredicate Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fluent-vaadin-flow Show documentation
Show all versions of fluent-vaadin-flow Show documentation
Broderick Labs for fluent vaadin flow. Inherits common Vaadin components.
package org.bklab.flow.util.predicate;
import com.vaadin.flow.server.WebBrowser;
import java.util.function.Predicate;
public class MobileBrowserPredicate implements Predicate {
@Override
public boolean test(WebBrowser b) {
return b.isAndroid() || b.isIPhone() || b.isWindowsPhone();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy