flutter_auth_buttons 0.6.0 copy "flutter_auth_buttons: ^0.6.0" to clipboard
flutter_auth_buttons: ^0.6.0 copied to clipboard

discontinued
outdated

Material buttons for logging into popular social networks, including Google, Facebook, Twitter and Microsoft.

Flutter Auth Buttons #

Flutter widget library containing buttons for authenticating with popular social networks: Google, Facebook, Twitter and Microsoft.

Screenshot

Usage #

Add flutter_auth_buttons to your pubspec.yaml, then import the Dart file:

import 'package:flutter_auth_buttons/flutter_auth_buttons.dart';

Use the onPressed attribute to capture the button press and call your authentication logic within that. To disable the button, pass null or omit the attribute.

FacebookSignInButton(onPressed: () {
  // call authentication logic
});

Some buttons have a dark mode. Enable this with the optional parameter:

GoogleSignInButton(
  onPressed: () {/* ... */}, 
  darkMode: true, // default: false
)

You can adjust the border-radius of the buttons:

TwitterSignInButton(
  onPressed: () {},
  borderRadius: 10.0,
)

See the documentation for API details: https://pub.dartlang.org/documentation/flutter_auth_buttons/latest/.

159
likes
0
pub points
87%
popularity

Publisher

unverified uploader

Material buttons for logging into popular social networks, including Google, Facebook, Twitter and Microsoft.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on flutter_auth_buttons