Skip to content

Commit

Permalink
Fixing a typo in Custom Layout (#1751)
Browse files Browse the repository at this point in the history
  • Loading branch information
waseefakhtar authored Mar 19, 2020
1 parent 4b06d16 commit 2f95eb9
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions auth/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -786,11 +786,12 @@ AuthMethodPickerLayout customLayout = new AuthMethodPickerLayout
// ...
.setTosAndPrivacyPolicyId(R.id.baz)
.build();

AuthUI.getInstance(this).createSignInIntentBuilder()
// ...
.setAuthMethodPickerLayout(customLayout)
.build());

startActivityForResult(
AuthUI.getInstance(this).createSignInIntentBuilder()
// ...
.setAuthMethodPickerLayout(customLayout)
.build());
```

### Strings
Expand Down

0 comments on commit 2f95eb9

Please sign in to comment.