flutter_social_button 1.1.6+1 flutter_social_button: ^1.1.6+1 copied to clipboard
Flutter Social Button is a flutter package to create social media login buttons easily to any flutter app.
Flutter Social Button
Flutter Social Button #
Features #
Flutter Social Button is a Flutter package to easily add social media buttons to your app. Buttons are customizable, and the package supports a wide range of social platforms.
Getting Started #
Add the following dependency to your pubspec.yaml
file:
dependencies:
flutter:
sdk: flutter
flutter_social_button: ^latest_version
Usage Example #
import flutter_social_button.dart
import 'package:flutter_social_button/flutter_social_button.dart';
For built-in buttons. #
// for full width Buttons
//For default Button Its return a Email Button
FlutterSocialButton(
onTap: () {}, ),
//For facebook Button
FlutterSocialButton(
onTap: () {},
buttonType: ButtonType.facebook, // Button type for different type buttons
),
//For google Button
FlutterSocialButton(
onTap: () {},
buttonType: ButtonType.google, // Button type for different type buttons
iconColor: Colors.black, // for change icons colors
),
// for Mini Circle Button
FlutterSocialButton(
onTap: () {},
mini: true, //just pass true for mini circle buttons
buttonType: ButtonType.phone, // Button type for different type buttons
),
Button Types #
- Yahoo
- Apple
- GitHub
- Phone
- YouTube
- Snapchat
- TikTok
- Tumblr
- Skype
- Viber
- Discord
- Line
- Quora
- Twitch
- Flickr
- Yelp
- Spotify
Example #
import 'package:flutter/material.dart';
import 'package:flutter_social_button/flutter_social_button.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({Key? key}) : super(key: key);
// This widget is the root of your application.
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Flutter Demo',
theme: ThemeData(
primarySwatch: Colors.blue,
),
home: const HomePage(),
);
}
}
class HomePage extends StatelessWidget {
const HomePage({Key? key}) : super(key: key);
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: const Text("Social Buttons"),
centerTitle: true,
),
body: Center(
child: SingleChildScrollView(
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
children: [
//For default Button
FlutterSocialButton(
onTap: () {},
),
const SizedBox(
height: 2,
),
//For facebook Button
FlutterSocialButton(
onTap: () {},
buttonType: ButtonType.facebook,
),
const SizedBox(
height: 2,
),
//For google Button
FlutterSocialButton(
onTap: () {},
buttonType: ButtonType.google,
),
const SizedBox(
height: 2,
),
//For phone Button
FlutterSocialButton(
onTap: () {},
buttonType: ButtonType.phone,
),
const SizedBox(
height: 2,
),
//For Whatsapp Button
FlutterSocialButton(
onTap: () {},
buttonType: ButtonType.whatsapp,
),
const SizedBox(
height: 2,
),
const Divider(
color: Colors.black,
thickness: 2.5,
),
Row(
mainAxisAlignment: MainAxisAlignment.spaceEvenly,
children: [
FlutterSocialButton(
onTap: () {},
mini: true,
),
FlutterSocialButton(
onTap: () {},
mini: true,
buttonType: ButtonType.facebook,
),
FlutterSocialButton(
onTap: () {},
mini: true,
buttonType: ButtonType.google,
),
FlutterSocialButton(
onTap: () {},
mini: true,
buttonType: ButtonType.phone,
),
],
)
],
),
),
),
);
}
}
Contributing #
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.