FLUTTER ECOSYSTEM

juliansteenbakker/sign_in_button

flutter_signin_button의 포크입니다. 다양한 종류의 로그인 버튼을 위한 라이브러리입니다.

로그인 버튼 프로젝트 이미지
Stars
28
Forks
18
최근 푸시(UTC)
2026. 8. 10.
프로젝트 상태
활성
Julian Steenbakker GitHub avatar
GITHUB User

Julian Steenbakker ↗

Fulltime Flutter, Android, iOS, macOS, web and embedded developer.

Bever InnovationsVlissingen
언어DartSwiftObjective-C

이 저장소가 배포한 패키지

사용 중인 의존성

의존성 목록 4 개

원본 README

아래는 영문 원문 스냅샷입니다. 최신 내용은 GitHub에서 확인하세요.

README 펼치기 / 접기

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!

Installation

Add to pubspec.yaml.

dependencies:
  ...
  sign_in_button: ^4.0.0

Usage Example

import sign_in_button.dart

import 'package:sign_in_button/sign_in_button.dart';
For built-in buttons.
SignInButton(
  Buttons.google,
  onPressed: () {},
)

// with custom text
SignInButton(
  Buttons.google,
  text: "Sign up with Google",
  onPressed: () {},
)
For mini buttons.
SignInButton(
  Buttons.facebook,
  mini: true,
  onPressed: () {},
)
For self-build buttons.
SignInButtonBuilder(
  text: 'Sign in with Email',
  icon: Icons.email,
  onPressed: () {},
  backgroundColor: Colors.blueGrey.shade700,
)
Built-in Buttons contain
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.