social_signin_buttons_plugin

Creator: coderz1093

Last updated:

Add to Cart

Description:

social signin buttons plugin

The Flutter Social Login Buttons package provides a set of easy-to-use and customizable buttons for integrating social login functionality into your Flutter applications. With this package, you can allow users to log in or sign up using their existing social media accounts such as Google, Facebook, Twitter, and GitHub etc.
Features #

Ready-to-use buttons for Google, Facebook, Twitter, and GitHub login.
Easily customizable to match your app's design and theme.
Seamless integration with popular authentication providers.

Installation #
To use this package, add it to your pubspec.yaml file:
dependencies:
social_login_buttons_plugin: ^1.0.0
copied to clipboard
Then, run flutter pub get to install the package.
Usage #
Import the package in your Dart code:
import 'package:social_login_buttons_plugin/social_login_buttons_plugin.dart';
copied to clipboard
Add the SignInButton to your UI:
Column(
mainAxisAlignment: MainAxisAlignment.center,
children: [
SignInButton(
Buttons.Google,
onPressed: () => _handleGoogleSignIn(),
text: 'Sign in with Google',
shape: RoundedRectangleBorder(borderRadius: BorderRadius.circular(8.0)),
),
SignInButton(
Buttons.Facebook,
onPressed: () => _handleFacebookSignIn(),
text: 'Sign in with Facebook',
shape: RoundedRectangleBorder(borderRadius: BorderRadius.circular(8.0)),
),
// Add more social login buttons as needed
],
),
copied to clipboard
Contributions #
Contributions to this package are welcome! If you encounter any issues or have suggestions for improvements, feel free to open an issue or submit a pull request on GitHub.

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Customer Reviews

There are no reviews.