GitToTheHub opened a new issue, #1098: URL: https://github.com/apache/cordova-plugin-inappbrowser/issues/1098
# Bug Report ## Problem When running the plugin in XCode 26 on an iOS 26 Simulator, the toolbar is not semi-transparent anymore and the background color cannot be set with the option `toolbarcolor`. Also the buttons have borders, which is eventually no issue, because it's a change by iOS 26 which is its new UI desing. Example: | iOS 18.5 | iOS 26.2 | | ------------ | ----------- | | <img width="380" height="115" alt="Image" src="https://github.com/user-attachments/assets/7d392b31-afc2-4cf8-9146-d2637d30bca4" /> | <img width="380" height="116" alt="Image" src="https://github.com/user-attachments/assets/5368755a-efa3-46d4-98da-6ac74b081a6f" /> | The green background color seen here, is from the underlying web view, which shines through the transparent parts of the in-app browser to demonstrate, which parts of the in-app browser are transparent. This layout issues happens with cordova-ios 7 and 8. ### What is expected to happen? The toolbar should be semi-transparent by default and be changeable by the option `toolbarcolor`. ### What does actually happen? The toolbar is transparent. The option `toolbarcolor` is ignored. ## Information <!-- Include all relevant information that might help understand and reproduce the problem --> ### Command or Code <!-- What command or code is needed to reproduce the problem? --> Create a fresh project with this plugin: ```sh cordova create inappbrowser-test cd inappbrowser-test cordova platform add ios cordova plugin add https://github.com/apache/cordova-plugin-inappbrowser ``` Show the in-app browser with default options: ```js cordova.InAppBrowser.open("https://www.apache.org", "_blank", "location=yes"); ``` ### Environment, Platform, Device <!-- In what environment, on what platform or on which device are you experiencing the issue? --> - macOS 26.2 - XCode 26.2 - iOS 26.2 simulator ### Version information <!-- What are relevant versions you are using? For example: Cordova: Cordova CLI, Cordova Platforms, Cordova Plugins Other Frameworks: Ionic Framework and CLI version Operating System, Android Studio, Xcode etc. --> - cordova-cli 13 - cordova-ios 7 & 8 - cordova-plugin-inappbrowser: master ## Checklist <!-- Please check the boxes by putting an x in the [ ] like so: [x] --> - [ ] I searched for existing GitHub issues - [ ] I updated all Cordova tooling to most recent version - [ ] I included all the necessary information above -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
