auth0_web_flutter 0.0.7 copy "auth0_web_flutter: ^0.0.7" to clipboard
auth0_web_flutter: ^0.0.7 copied to clipboard

Platformweb

A Flutter package to easily integrate Auth0 into Web Flutter apps.

A Flutter package to easily integrate Auth0 into Web Flutter apps.

Platform Support #

Android iOS MacOS Web Linux Windows
x x x ✔️ x x

Auth0FlutterWeb is supported for web only.

Features #

Integrate Auth0 authentication across web Flutter apps. Registration and Login users, logout users, and identify currently authenticated users across web.

Usage #

To use this plugin, add auth0_flutter2 as a dependency in your pubspec.yaml file.

Web #

Add the Auth0 Javascript SPA (Single Page Application) library.

<script src="https://cdn.auth0.com/js/auth0-spa-js/1.13/auth0-spa-js.production.js"></script>

Example #

Import the library.

import 'package:auth0_flutter2/auth0_flutter2.dart';

Then initialize the Auth0FlutterWeb class in your main() method.

void main() {
  Auth0FlutterWeb.auth0Domain = "AUTH0_DOMAIN";
  Auth0FlutterWeb.auth0ClientId = "AUTH0_CLIENT_ID";
  Auth0FlutterWeb.redirectUri = "YOUR_APP_REDIRECT_URI";

  // Set the URL strategy for our web app. Removes 
  // trailing hash(#) to ensure login callbacks
  // will be captured and processed correctly.
  Auth0FlutterWeb.setPathUrlStrategy();

  runApp(const MyApp());
}

Then invoke the class methods anywhere in your Dart code.

Auth0FlutterWeb.instance.userAuthentication(screenHint: "signup");
Auth0FlutterWeb.instance.userAuthentication(screenHint: "login");
Auth0FlutterWeb.instance.logoutUser();
Auth0FlutterWeb.instance.getLoggedInUserId();
2
likes
140
pub points
20%
popularity

Publisher

unverified uploader

A Flutter package to easily integrate Auth0 into Web Flutter apps.

Repository (GitHub)
View/report issues

Documentation

API reference

License

BSD-3-Clause (LICENSE)

Dependencies

auth0_flutter, flutter, meta, universal_html, url_strategy

More

Packages that depend on auth0_web_flutter