Welcome! › Forums › Unity Plugins › In-App Web Browser › Top Bar is not Hidden in IOS › Reply To: Top Bar is not Hidden in IOS
February 5, 2024 at 12:02 pm
#23033
Piotr
Keymaster
Hey,
I’ve done several tries and cannot reproduce this issue.
Could you check if it happens when using regular callback function like in DemoScene (not Awake
):
public void OnButtonClicked()
{
InAppBrowser.DisplayOptions options = new InAppBrowser.DisplayOptions();
options.displayURLAsPageTitle = false;
options.pageTitle = "InAppBrowser example";
options.hidesTopBar = true;
InAppBrowser.OpenURL(pageToOpen, options);
}
Another option is Unity botched package import or update and in reality you are using some old version? Could you try to reimport it?