4

I'm looking into a way to make a better native feel for my flutter project. Is it possible to customize the safari launch view inside the flutter app, in a way I could hide the url, refresh button along with the bottom navigation bar? This is how it currently looks like, and I want to hide the parts in the red box

1

baldr
  • 2,891
  • 11
  • 43
  • 61
Tien Thai
  • 41
  • 3

1 Answers1

1

To get a native web view in flutter, you'd have to use webview_flutter plugin, this allows you to use widgets on top of the webview and hide URL and other things in a browser.

sameer kashyap
  • 1,121
  • 1
  • 9
  • 14
  • Thank you. I tried that, but I need the appauth plugin for oauth2 flow. Is it possible to achieve this authentication flow through webview? – Tien Thai Oct 17 '20 at 11:10
  • did you manage to find a solution for this @TienThai ? – HappyXD Dec 03 '20 at 05:27
  • unfortunately not, it could be solved by combining webview and url_launcher, but eventually the oauth with pkce wouldn't work since it's not supported – Tien Thai Dec 21 '20 at 14:29