FirebaseUI Auth 10 beta02 exposes customLayout on AuthMethodPicker, but the high-level FirebaseAuthScreen does not provide any way to pass this parameter through.
This looks like a regression from FirebaseUI Auth 9.x, where the Activity-based flow supported a custom auth method picker layout via AuthMethodPickerLayout / setAuthMethodPickerLayout(...). In beta02, the equivalent customization point exists at the lower-level picker composable, but it is not reachable when using the recommended high-level FirebaseAuthScreen API.
Dropping down to direct AuthMethodPicker usage does not seem equivalent, because FirebaseAuthScreen owns the provider dispatch logic, navigation to provider-specific screens, error handling, account linking, MFA handling, and related flow behavior.
Could this customization point be exposed through FirebaseAuthScreen, or is there another intended way to customize the method picker layout while keeping the high-level authentication flow?
FirebaseUI Auth 10 beta02 exposes
customLayoutonAuthMethodPicker, but the high-levelFirebaseAuthScreendoes not provide any way to pass this parameter through.This looks like a regression from FirebaseUI Auth 9.x, where the Activity-based flow supported a custom auth method picker layout via
AuthMethodPickerLayout/setAuthMethodPickerLayout(...). In beta02, the equivalent customization point exists at the lower-level picker composable, but it is not reachable when using the recommended high-levelFirebaseAuthScreenAPI.Dropping down to direct
AuthMethodPickerusage does not seem equivalent, becauseFirebaseAuthScreenowns the provider dispatch logic, navigation to provider-specific screens, error handling, account linking, MFA handling, and related flow behavior.Could this customization point be exposed through
FirebaseAuthScreen, or is there another intended way to customize the method picker layout while keeping the high-level authentication flow?