authnull 0.1.2 copy "authnull: ^0.1.2" to clipboard
authnull: ^0.1.2 copied to clipboard

outdated

A new flutter plugin project.

example/lib/main.dart

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

void main() => runApp(
      Authnull(
        continueWithText: Text(
          'Continue With',
          style: TextStyle(color: Colors.white),
        ),
        backgroundImage: NetworkImage(
          'https://cdn.pixabay.com/photo/2020/02/04/20/48/italy-4819291_960_720.jpg',
        ),
        configs: [
          GoogleConfig(),
          BrontosaurusConfig(
            appBar: AppBar(
              title: Text('Login'),
            ),
            icon: Icon(Icons.ac_unit),
            applicationKey: 'Test',
            server: 'https://example.com',
          ),
        ],
        onSignIn: (AuthorizationStaus status) {
          print(status.toString());
        },
      ),
    );
0
likes
0
pub points
0%
popularity

Publisher

unverified uploader

A new flutter plugin project.

Homepage

License

unknown (LICENSE)

Dependencies

brontosaurus_flutter, firebase_auth, flutter, google_sign_in, http, shared_preferences

More

Packages that depend on authnull