azure_auth 1.0.1
azure_auth: ^1.0.1 copied to clipboard
Flutter package for handling authentication using **Azure Active Directory B2C**, supporting **Facebook**, **Google**, **Email/Password**, and **Phone** sign-in through Azure's identity providers.
Use this package as a library
Depend on it
Run this command:
With Flutter:
$ flutter pub add azure_authThis will add a line like this to your package's pubspec.yaml (and run an implicit flutter pub get):
dependencies:
azure_auth: ^1.0.1Alternatively, your editor might support flutter pub get. Check the docs for your editor to learn more.
Import it
Now in your Dart code, you can use:
import 'package:azure_auth/core/constants/app_assets.dart';
import 'package:azure_auth/core/constants/app_strings.dart';
import 'package:azure_auth/core/theme/app_colors.dart';
import 'package:azure_auth/core/theme/app_text_styles.dart';
import 'package:azure_auth/core/widgets/app_text_form_field.dart';
import 'package:azure_auth/core/widgets/button_icon_with_text.dart';
import 'package:azure_auth/core/widgets/or_divider_widget.dart';
import 'package:azure_auth/features/auth/cubit/auth_cubit.dart';
import 'package:azure_auth/features/auth/cubit/auth_state.dart';
import 'package:azure_auth/login_screen.dart';
import 'package:azure_auth/vsauth.dart';