victorbonnet / flutter_web_browser

Plugin for flutter to open web page with Chrome Custom Tabs and SFSafariViewController
MIT License
62 stars 39 forks source link

[Request] Method to change the modal presentation style #41

Closed Eric-Liqiafeng closed 2 years ago

Eric-Liqiafeng commented 2 years ago

Hi, dear author The navigating behavior of "openWebPage" in the plugin is right_in and right_out. I hope there is a parameter to set, which can be set to pop up (bottom_in and bottom_out) I was wondering if you could implement a function to change the modal presentation style, example as below, thanks

iOS sfvc.modalPresentationStyle = UIModalPresentationOverFullScreen; image

Android image

victorbonnet commented 2 years ago

Hi, Thanks to @ABausG, we can now configure the presentation style for iOS. This is available in version 0.17.1.

Eric-Liqiafeng commented 2 years ago

Thanks.