bdaya_openidconnect 1.0.0 copy "bdaya_openidconnect: ^1.0.0" to clipboard
bdaya_openidconnect: ^1.0.0 copied to clipboard

discontinuedreplaced by: oidc

OpenIdConnect library for flutter, it supports interactive authorization and token refresh/persistance.

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:openidconnect_example/choose.dart';

void main() {
  runApp(MyApp());
}

//Credentials gathered from the playground
//login: dull-moth@example.com
//password: Yawning-Octopus-58

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: ChoosePage(),
    );
  }
}