flutter-passkeys icon indicating copy to clipboard operation
flutter-passkeys copied to clipboard

Update loginWithPasskey to support automatic conditionalUI for iOS

Open incorbador opened this issue 2 years ago • 0 comments

Currently we only support performAutoFillAssistedRequests on iOS. Therefore it is not possible to automatically trigger a conditionalUI popup. Users can therefore complete conditional UI only through their keyboard.

Proposal: Add another parameter to the loginWithPasskey method called "keyboardIntegrated: boolean". This allows for the following combinations:

  • conditional: false, keyboardIntegrated: false (Android, iOS, Web)
  • conditional: true, keyboardIntegrated: false (Android, iOS, Web)
  • conditional: true, keyboardIntegrated: true (iOS)

incorbador avatar Feb 01 '24 19:02 incorbador