main_auth 0.0.6 main_auth: ^0.0.6 copied to clipboard
This package provides a customizable **Login** and **Sign-Up** screen for Flutter applications. It allows easy integration of login forms, social login buttons, and customization of titles, styles, an [...]
import 'dart:developer';
import 'package:flutter/material.dart';
import 'package:main_auth/main_auth.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({super.key});
// This widget is the root of your application.
@override
Widget build(BuildContext context) {
return MaterialApp(
debugShowCheckedModeBanner: false,
supportedLocales: const [
Locale('en'),
Locale('ar'),
],
locale: const Locale('ar'),
localeResolutionCallback: (locale, supportedLocales) =>
locale ?? const Locale('ar'),
localizationsDelegates: context.smartLocalizeDelegates,
title: 'Flutter Demo',
theme: ThemeData(
colorScheme: ColorScheme.fromSeed(seedColor: Colors.deepPurple),
useMaterial3: true,
),
home: const MyHomePage(),
);
}
}
class MyHomePage extends StatefulWidget {
const MyHomePage({super.key});
@override
State<MyHomePage> createState() => _MyHomePageState();
}
class _MyHomePageState extends State<MyHomePage> {
@override
Widget build(BuildContext context) {
return MainAuth(
loginModel: AuthModel(
hideAppBar: true,
onSignUpPressed: (email, password, {phone, confirmPassword}) =>
log('$email, $password,$phone, $confirmPassword,'),
socialModel: SocialModel(
onTapFacebook: () => log('facebook'),
onTapGoogle: () => log('google'),
onTapApple: () => log('apple'),
onTapX: () => log('x'),
// hideSocialAuth: true,
socialButtonType: SocialButtonType.defaultType,
// hideSocialAuth: true,
socialAuthList: const [
SocialAuth.apple,
SocialAuth.google,
SocialAuth.facebook,
SocialAuth.x,
],
),
),
signUpModel: AuthModel(
hideAppBar: true,
onSignUpPressed: (email, password, {phone, confirmPassword}) =>
log('$email, $password,$phone, $confirmPassword,'),
socialModel: SocialModel(
onTapFacebook: () => log('facebook'),
onTapGoogle: () => log('google'),
onTapApple: () => log('apple'),
onTapX: () => log('x'),
socialButtonType: SocialButtonType.icon,
// hideSocialAuth: true,
// hideSocialAuth: true,
socialAuthList: const [
SocialAuth.apple,
SocialAuth.google,
SocialAuth.facebook,
SocialAuth.x,
],
),
),
);
}
}