ZaynJarvis / Flutter-Sign-in-Button

A sign in button helper library for Flutter
MIT License
232 stars 122 forks source link

Rounded Corners #99

Open marchellodev opened 2 years ago

marchellodev commented 2 years ago

Hey, is it possible to have custom Rounded Corners in the button?

jonsamwell commented 2 years ago

Use this

final shape =
        RoundedRectangleBorder(borderRadius: BorderRadius.circular(20));

SignInButton(
            Buttons.AppleDark,
            shape: shape,,
            onPressed: () { },
          ),
Hacklone commented 2 years ago

Would be awesome to add this to the README

loolooii commented 2 years ago

The rounded corner doesn't look good on Google buttons, because of the rectangular logo thing on the left side Screenshot 2022-07-17 at 12 46 42 Is there a workaround for this? I think this is considered a bug?

loolooii commented 2 years ago

Oh I see this was already reported: https://github.com/ZaynJarvis/Flutter-Sign-in-Button/issues/81