openidconnect 1.0.29 openidconnect: ^1.0.29 copied to clipboard
OpenIdConnect library for flutter.
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 StatefulWidget {
@override
_MyAppState createState() => _MyAppState();
}
class _MyAppState extends State<MyApp> {
@override
void initState() {
super.initState();
}
@override
Widget build(BuildContext context) {
return MaterialApp(
home: ChoosePage(),
);
}
}