sawo 0.1.2
sawo: ^0.1.2 copied to clipboard
Passwordless and OTP-less Authentication for your website. It helps you to authenticate user via their email or phone number.
example/lib/main.dart
import 'package:flutter/material.dart';
import 'package:sawo/sawo.dart';
void main() {
runApp(MaterialApp(
title: 'Sawo Login Example',
home: HomeScreen(),
));
}
class HomeScreen extends StatelessWidget {
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text('Sawo login example'),
),
body: Center(child: SelectionButton()),
);
}
}
class SelectionButton extends StatefulWidget {
@override
_SelectionButtonState createState() => _SelectionButtonState();
}
class _SelectionButtonState extends State<SelectionButton> {
// sawo object
Sawo sawo = Sawo(
apiKey: "Your API Key",
secretKey: "Your Secret key",
);
// user payload
String user = "";
void payloadCallback(context, payload) {
if (payload == null || (payload is String && payload.length == 0)) {
payload = "Login Failed :(";
}
setState(() {
user = payload;
});
}
@override
Widget build(BuildContext context) {
return Center(
child: Padding(
padding: const EdgeInsets.symmetric(horizontal: 20),
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
children: [
Text("UserData :- $user"),
ElevatedButton(
onPressed: () {
sawo.signIn(
context: context,
identifierType: 'email',
callback: payloadCallback,
);
},
child: Text('Email Login'),
),
ElevatedButton(
onPressed: () {
sawo.signIn(
context: context,
identifierType: 'phone_number_sms',
callback: payloadCallback,
);
},
child: Text('Phone Login'),
),
],
),
),
);
}
}