Skip to content

Instantly share code, notes, and snippets.

@riscait
Last active April 9, 2020 11:24
Show Gist options
  • Save riscait/08e7c3478977a48921056bf2c03c34cd to your computer and use it in GitHub Desktop.
Save riscait/08e7c3478977a48921056bf2c03c34cd to your computer and use it in GitHub Desktop.
flutter_signin_button パッケージのAppleボタン
final isLightTheme = Theme.of(context).brightness == Brightness.light;
SignInButton(
Buttons.Apple,
// mini: true,
text: 'Sign in with Apple',
// padding: const EdgeInsets.all(0),
shape: StadiumBorder(
side: isLightTheme ? const BorderSide(width: 1) : BorderSide.none,
),
onPressed: () => presenter.onPressedAppleButton(context),
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment