Show authentication method selection dialog.
Presents user with three authentication options:
Selected authentication method, or undefined if cancelled
const method = await showAuthMethodPicker();if (method === 'email-password') { // Handle credentials login} else if (method) { // Handle OAuth login} Copy
const method = await showAuthMethodPicker();if (method === 'email-password') { // Handle credentials login} else if (method) { // Handle OAuth login}
Show authentication method selection dialog.
Presents user with three authentication options: