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(),
    );
  }
}