Easy Sign In | Coderz Repository

easy_sign_in

Last updated:

0 purchases

easy_sign_in Image
easy_sign_in Images

Free

Languages

Categories

Add to Cart

Description:

easy sign in

Features #
It Help Easy Set Sign in Google and Future More Sign in Provider
Usage #
Full Set Up
to /example folder.

import 'package:easy_sign_in/provider/google/auth_services.dart';
import 'package:flutter/material.dart';

// Follow set Up its very important


void main() {
runApp(
const MaterialApp(
home: MyApp(),
),
);
}

class MyApp extends StatefulWidget {
const MyApp({super.key});

@override
State<MyApp> createState() => _MyAppState();
}

class _MyAppState extends State<MyApp> {
@override
Widget build(BuildContext context) {
return Scaffold(
body: Center(
child: ElevatedButton(
onPressed: () {
EasyAuthManager().signInWithGoogle();
},
child: const Text('Sing In'),
),
),
);
}
}


copied to clipboard
Additional information #
The Package Make Time Use The Official Package this

License:

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product: (if this is empty don't purchase this product)

Customer Reviews

There are no reviews.