auth0_lib 0.5.2 copy "auth0_lib: ^0.5.2" to clipboard
auth0_lib: ^0.5.2 copied to clipboard

Flutter toolkit for Auth0 API and web pkce flow authentication. Forked: https://github.com/devdennysegura/flutter-auth0

example/lib/main.dart

import 'dart:async';

import 'package:flutter/material.dart';
import 'demo.dart';

void main() async {
  runZoned<Future<Null>>(() async {
    runApp(MyApp());
  }, onError: (error, stackTrace) async {
    debugPrint(error.toString());
  });
}

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Flutter Auth0 Demo',
      home: MyHomePage(title: 'Demo'),
    );
  }
}
0
likes
30
pub points
0%
popularity

Publisher

verified publisherbits.cr

Flutter toolkit for Auth0 API and web pkce flow authentication. Forked: https://github.com/devdennysegura/flutter-auth0

Repository (GitHub)
View/report issues

License

MIT (LICENSE)

Dependencies

flutter, http, meta

More

Packages that depend on auth0_lib