cafebazaar_auth 1.0.2 cafebazaar_auth: ^1.0.2 copied to clipboard
With this package you can use CafeBazaar auth and storage in flutter applications, This package only supports Android applications.
import 'package:cafebazaar_auth/cafebazaar_auth.dart';
import 'package:cafebazaar_auth/cafebazaar_login_button.dart';
import 'package:flutter/material.dart';
void main() {
runApp(MyApp());
}
class MyApp extends StatefulWidget {
@override
_MyAppState createState() => _MyAppState();
}
class _MyAppState extends State<MyApp> {
signIn() async {
CafeBazaarAccount? account = await CafeBazaarAuth.signIn();
print(account?.accountID??'-');
}
@override
Widget build(BuildContext context) {
return MaterialApp(
home: Scaffold(
appBar: AppBar(
title: const Text('Plugin example app'),
),
body: Center(
child: Directionality(
textDirection: TextDirection.rtl,
child: Container(
width: 180,
child: CafeBazaarLoginButton(
onPressed: signIn,
),
),
),
),
),
);
}
}