Browser UI

Overview

The latest version of our SDK introduces a new feature that allows activating the Browser User Interface (UI) using the withBrowserUI method. This method in our SDK provides the ability to enable the user interface of a browser in a simple and efficient way. By using this method, your application or platform can leverage the typical native user interface of a browser, providing users with a familiar and consistent experience within the browser environment. This feature is particularly valuable when seeking seamless integration with the standard appearance of a browser, without the need for additional configurations.

How to use it

To enable the Browser user interface, simply call the withBrowserUI method at the appropriate moment within your application.

Example

import com.equo.application.client.EquoApp;

import java.net.MalformedURLException;
import java.net.URL;

public class BrowserAppSample {
    public static void main(String[] args) throws MalformedURLException {
      EquoApp.create("BROWSER-APP")
            .withBrowserUI()
            .launch(new URL("https://equo.dev"));
    }
}

Result

withBrowserUI

With this straightforward addition, your application will activate the Browser UI, providing users with a familiar and consistent browsing experience.