social_login_buttons 1.0.7 social_login_buttons: ^1.0.7 copied to clipboard
A new Flutter package which allows users to create social media login button easily.
import 'package:flutter/material.dart';
import 'package:social_login_buttons/social_login_buttons.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({Key? key}) : super(key: key);
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Flutter Social Login Buttons',
debugShowCheckedModeBanner: false,
theme: ThemeData(
primarySwatch: Colors.blue,
),
home: const MyHomePage(tittle: 'Flutter Social Login Buttons'),
);
}
}
class MyHomePage extends StatelessWidget {
const MyHomePage({Key? key, required this.tittle}) : super(key: key);
final String tittle;
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: const Text('Social Login Button'),
elevation: 2.0,
),
body: _buildContainer(context),
backgroundColor: Colors.grey[200],
);
}
Widget _buildContainer(BuildContext context) {
return Padding(
padding: const EdgeInsets.all(16.0),
child: Center(
child: SingleChildScrollView(
child: Column(
crossAxisAlignment: CrossAxisAlignment.stretch,
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[
SocialLoginButton(
buttonType: SocialLoginButtonType.apple,
onPressed: () {},
),
const SizedBox(height: 10),
SocialLoginButton(
buttonType: SocialLoginButtonType.appleBlack,
onPressed: () {},
),
const SizedBox(height: 10),
SocialLoginButton(
buttonType: SocialLoginButtonType.facebook,
onPressed: () {},
),
const SizedBox(height: 10),
SocialLoginButton(
buttonType: SocialLoginButtonType.github,
onPressed: () {},
),
const SizedBox(height: 10),
SocialLoginButton(
buttonType: SocialLoginButtonType.google,
onPressed: () {},
),
const SizedBox(height: 10),
SocialLoginButton(
buttonType: SocialLoginButtonType.microsoft,
onPressed: () {},
),
const SizedBox(height: 10),
SocialLoginButton(
buttonType: SocialLoginButtonType.microsoftBlack,
onPressed: () {},
imageWidth: 20,
),
const SizedBox(height: 10),
SocialLoginButton(
backgroundColor: Colors.amber,
height: 50,
text: 'SignIn',
borderRadius: 20,
fontSize: 25,
buttonType: SocialLoginButtonType.generalLogin,
onPressed: () {},
),
const SizedBox(height: 10),
Row(
mainAxisAlignment: MainAxisAlignment.spaceBetween,
children: [
SocialLoginButton(
buttonType: SocialLoginButtonType.google,
onPressed: () {},
mode: SocialLoginButtonMode.single,
),
],
)
],
),
),
),
);
}
}