dwyl / learn-flutter

🦋 Learn how to use Flutter to Build Cross-platform Native Mobile Apps
https://flutter.dev
GNU General Public License v2.0
73 stars 8 forks source link

SPIKE: Display a Content from the Web in a WebView #5

Open nelsonic opened 4 years ago

nelsonic commented 4 years ago

We appear to be having a little challenge getting Google Auth to work in Flutter without Firebase: https://github.com/dwyl/learn-flutter/issues/4 This is a temporary obstacle if we are able to embed the fully functional Phoenix Google Auth into our Flutter App using a WebView. If we are able to display any web page in a Flutter App then we will be able to perform all the Google Authentication steps in a web view and eliminate the need for Firebase.

Todo

Useful Links

Note: I am aware that at the time of writing there is an issue displaying the keyboard for input in a WebView https://github.com/flutter/flutter/issues/19718 that may affect our ability to seamlessly use the Elixir Auth, but I trust that it will be resolved soon. Please proceed with this SPIKE and if we determine that it is unworkable to perform Auth in a WebView we will consider alternative options.

@miguelmartins17 in case you are wondering why this issue has the word "SPIKE" in the title, see: https://en.wikipedia.org/wiki/Spike_(software_development) 😉

miguelmartins17 commented 4 years ago

@nelsonic I've already started working on this issue. 😎

nelsonic commented 4 years ago

@miguelmartins17 Please share your progress with screenshots as you are going. 👍

miguelmartins17 commented 4 years ago

@nelsonic I didn't find anything about how to display the WebView in a portion of the screen. Do you want me to open a New issue?

nelsonic commented 4 years ago

@miguelmartins17 in the official video (linked above) at 02:50 @efortuna describes having a WebView inside of a ListView: image This is used to display the content of a News article below the news article Title. It is an example of only using a portion of the screen to display a WebView.

I think this is a good use-case if the news content is web based and we want to contain it. 💭