simple_auth_flutter 1.0.6 simple_auth_flutter: ^1.0.6 copied to clipboard
Simple Auth is the simplest way to authenticate your users/apis. This plugin will securely store tokens/credentials as well as automatically present login UI when needed.
import 'package:flutter/material.dart';
import 'package:simple_auth/simple_auth.dart' as simpleAuth;
import 'package:simple_auth_flutter/simple_auth_flutter.dart';
void main() => runApp(new MyApp());
class MyApp extends StatefulWidget {
@override
_MyAppState createState() => new _MyAppState();
}
class _MyAppState extends State<MyApp> {
@override
initState() {
super.initState();
SimpleAuthFlutter.init(context);
}
@override
Widget build(BuildContext context) {
return new MaterialApp(
title: 'SimpleAuth Demo',
theme: new ThemeData(
primarySwatch: Colors.blue,
),
home: new MyHomePage(title: 'SimpleAuth Home Page'),
);
}
}
class MyHomePage extends StatefulWidget {
MyHomePage({Key key, this.title}) : super(key: key);
// This widget is the home page of your application. It is stateful, meaning
// that it has a State object (defined below) that contains fields that affect
// how it looks.
// This class is the configuration for the state. It holds the values (in this
// case the title) provided by the parent (in this case the App widget) and
// used by the build method of the State. Fields in a Widget subclass are
// always marked "final".
final String title;
@override
_MyHomePageState createState() => new _MyHomePageState();
}
class _MyHomePageState extends State<MyHomePage> {
static String azureClientId = "";
static String azureTennant = "";
final simpleAuth.AzureADApi azureApi = new simpleAuth.AzureADApi(
"azure",
azureClientId,
"https://login.microsoftonline.com/$azureTennant/oauth2/authorize",
"https://login.microsoftonline.com/$azureTennant/oauth2/token",
"https://management.azure.com/");
final simpleAuth.BasicAuthApi basicApi = new simpleAuth.BasicAuthApi(
"github-basic", "https://api.github.com/user");
@override
Widget build(BuildContext context) {
SimpleAuthFlutter.context = context;
// This method is rerun every time setState is called, for instance as done
// by the _incrementCounter method above.
//
// The Flutter framework has been optimized to make rerunning build methods
// fast, so that you can just rebuild anything that needs updating rather
// than having to individually change instances of widgets.
return new Scaffold(
appBar: new AppBar(
// Here we take the value from the MyHomePage object that was created by
// the App.build method, and use it to set our appbar title.
title: new Text(widget.title),
),
body: ListView(
children: <Widget>[
ListTile(
title: Text(
"AzureAD OAuth",
style: Theme.of(context).textTheme.headline,
),
),
ListTile(
leading: Icon(Icons.launch),
title: Text('Login'),
onTap: () {
login(azureApi);
},
),
ListTile(
leading: Icon(Icons.delete),
title: Text('Logout'),
onTap: () {
logout(azureApi);
},
),
ListTile(
title: Text(
"Github BasicAuth",
style: Theme.of(context).textTheme.headline,
),
),
ListTile(
leading: Icon(Icons.launch),
title: Text('Login'),
onTap: () async {
try {
var success = await basicApi.authenticate();
showMessage("Logged in success: $success");
} catch (e) {
showError(e);
}
},
),
ListTile(
leading: Icon(Icons.delete),
title: Text('Logout'),
onTap: () async {
await basicApi.logOut();
showMessage("Logged out");
},
),
],
),
);
}
void showError(dynamic ex) {
showMessage(ex.toString());
}
void showMessage(String text) {
var alert = new AlertDialog(content: new Text(text), actions: <Widget>[
new FlatButton(
child: const Text("Ok"),
onPressed: () {
Navigator.pop(context);
})
]);
showDialog(context: context, builder: (BuildContext context) => alert);
}
void login(simpleAuth.AuthenticatedApi api) async {
try {
var success = await api.authenticate();
showMessage("Logged in success: $success");
} catch (e) {
showError(e);
}
}
void logout(simpleAuth.AuthenticatedApi api) async {
await api.logOut();
showMessage("Logged out");
}
}