I'm trying to implement Github Login with flutter web.
Followed the example but getting the exception :
Exception: You are required to implement the 'showAuthenticator' or sharedShowAuthenticator
As the documentation says you need to initialize the app, but for that, it needs simple_auth_flutter package which is unsupported for the web(getting error after running flutter pub get ).
Is it possible to create Github Login functionality with flutter web?
I'm trying to implement
Github Login
with flutter web. Followed the example but getting the exception :Exception: You are required to implement the 'showAuthenticator' or sharedShowAuthenticator
As the documentation says you need to initialize the app, but for that, it needs
simple_auth_flutter
package which is unsupported for the web(getting error after runningflutter pub get
).Is it possible to create Github Login functionality with flutter web?