v4.1.0sign_in_button
विभिन्न सोशल मीडिया खातों के लिए प्रमाणित करने के बटन बनाने के लिए एक Flutter प्लगइन।
168लाइक 22.5 हज़ार30-दिन डाउनलोड70Pub अंक
प्लेटफ़ॉर्म डेटा नहीं
flutter_signin_button का फॉर्क। विभिन्न प्रकार के साइन-इन बटनों के लिए एक पुस्तकालय।
{"sdk":"flutter"}>=11.0.0 <12.0.0{"sdk":"flutter"}>=8.0.0 <11.0.0यह अंग्रेज़ी मूल स्नैपशॉट है। नवीनतम सामग्री 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.