easy_authentication 0.0.1
easy_authentication: ^0.0.1 copied to clipboard
a pakcage to ease the job
easy_authentication #
Here this is just a package for flutter enthusiast who are seeking to ease their auth jobs A simple Flutter package for basic authentication UI with button clicks.
How to use #
import 'package:your_package_name/auth_screen.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({Key? key}) : super(key: key);
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Auth Package',
home: const AuthScreen(),
);
}
}