Skip to content

Commit

Permalink
doc: add example of label
Browse files Browse the repository at this point in the history
  • Loading branch information
juliansteenbakker committed Jun 28, 2021
1 parent bd77b1c commit 0ca10af
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -215,6 +215,7 @@ class LoginScreen extends StatelessWidget {
loginProviders: <LoginProvider>[
LoginProvider(
icon: FontAwesomeIcons.google,
label: 'Google',
callback: () async {
print('start google sign in');
await Future.delayed(loginTime);
Expand All @@ -224,6 +225,7 @@ class LoginScreen extends StatelessWidget {
),
LoginProvider(
icon: FontAwesomeIcons.facebookF,
label: 'Facebook',
callback: () async {
print('start facebook sign in');
await Future.delayed(loginTime);
Expand Down

0 comments on commit 0ca10af

Please sign in to comment.