- SDK Version: 1.3.0
- Screenshots of error:
- Related to Custom Authentication? Please provide the following info too: (Optional)
- Verifier Name: email_passwordless
- JWKS Endpoint:
- Sample idToken(JWT)
Future _withEmailPasswordless(String? email) async {
return Web3AuthFlutter.login(LoginParams(
loginProvider: web3_auth_enums.Provider.email_passwordless,
extraLoginOptions: ExtraLoginOptions(
login_hint: email)));
}
Is there any ways to get the openlogin url and inject a webview to this page instead of popup a browser window, I tried to add “display: Display.page” to ExtraLoginOptions and it still popup a browser window
Openlogin url opens within in-app only.
Hey @lukewarmthee
The flutter SDK from web3auth is a plug and play sdk, which means that there will be a popup for key reconstruction outside the application always. It currently opens up in an in-app browser, which is the most secure and convenient way for the user in this flow. If you want a more personalised experience in which this popup doesn’t happen, you need to use our Core Kit SDKs. However, currently there’s no Core Kit SDK for flutter environment.