flutter_auth_ui 0.2.6 copy "flutter_auth_ui: ^0.2.6" to clipboard
flutter_auth_ui: ^0.2.6 copied to clipboard

outdated

A Flutter plugin for using the Firebase Auth UI with Dart in Flutter apps.

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:flutter_auth_ui/flutter_auth_ui.dart';

void main() => runApp(MyApp());

class MyApp extends StatefulWidget {
  @override
  _MyAppState createState() => _MyAppState();
}

class _MyAppState extends State<MyApp> {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        appBar: AppBar(
          title: const Text('Plugin example app'),
        ),
        body: Center(
          child: Column(
            children: [
              RaisedButton(
                  child: const Text("start ui"),
                  onPressed: () async {
                    final providers = [
                      AuthUiItem.AuthEmail,
                      AuthUiItem.AuthApple,
                      AuthUiItem.AuthGithub,
                      AuthUiItem.AuthGoogle,
                      AuthUiItem.AuthMicrosoft,
                      AuthUiItem.AuthYahoo,
                    ];
                    final tosAndPrivacyPolicy = TosAndPrivacyPolicy(
                        "https://www.google.com", "https://www.google.com");

                    final result = await FlutterAuthUi.startUi(
                        providers, tosAndPrivacyPolicy);
                    print(result);
                  }),
            ],
          ),
        ),
      ),
    );
  }
}
65
likes
0
pub points
73%
popularity

Publisher

unverified uploader

A Flutter plugin for using the Firebase Auth UI with Dart in Flutter apps.

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

firebase_auth, flutter, flutter_plugin_android_lifecycle

More

Packages that depend on flutter_auth_ui