v4.1.0sign_in_button
Ein Flutter-Plugin zum Erstellen von Anmelde-Schaltflächen für verschiedene Social-Media-Konten.
168Likes 22.50030-Tage-Downloads70Pub-Punkte
Keine Plattformdaten
Fork von flutter_signin_button. Eine Bibliothek für verschiedene Arten von Anmeldebuttons.
{"sdk":"flutter"}>=11.0.0 <12.0.0{"sdk":"flutter"}>=8.0.0 <11.0.0Englischer Projektschnappschuss. Aktuelle Inhalte auf GitHub.
Fork from flutter_signin_button.
A Flutter plugin for iOS and Android for generating sign-in buttons for different social media account.
Feedback and Pull Requests are most welcome!
Add to pubspec.yaml.
dependencies:
...
sign_in_button: ^4.0.0
import sign_in_button.dart
import 'package:sign_in_button/sign_in_button.dart';
SignInButton(
Buttons.google,
onPressed: () {},
)
// with custom text
SignInButton(
Buttons.google,
text: "Sign up with Google",
onPressed: () {},
)
SignInButton(
Buttons.facebook,
mini: true,
onPressed: () {},
)
SignInButtonBuilder(
text: 'Sign in with Email',
icon: Icons.email,
onPressed: () {},
backgroundColor: Colors.blueGrey.shade700,
)
enum Buttons {
email,
google,
googleDark,
facebook,
facebookNew,
gitHub,
apple,
appleDark,
linkedIn,
pinterest,
tumblr,
twitter,
reddit,
quora,
yahoo,
hotmail,
xbox,
microsoft,
}
https://github.com/juliansteenbakker/sign_in_button/raw/master/showcase.png
Refer to example folder and the source code for more information.