Welcome! › Forums › Unity Plugins › In-App Web Browser › UIWebView deprecation › Reply To: UIWebView deprecation
September 23, 2019 at 1:15 pm
#1669
alienheretic
Participant
public class BrowserOpener : MonoBehaviour
{
public string pageToOpen = “http://www.google.com”;
// check readme file to find out how to change title, colors etc.
public void OnButtonClicked()
{
InAppBrowser.DisplayOptions options = new InAppBrowser.DisplayOptions();
options.displayURLAsPageTitle = false;
options.pageTitle = “InAppBrowser example”;
InAppBrowser.OpenURL(pageToOpen, options);
}
public void OnClearCacheClicked()
{
InAppBrowser.ClearCache();
}
}