Credential Manager is a Jetpack API that supports multiple sign-in methods, such as username and password, passkeys, and federated sign-in solutions (like Sign-in with Google) in a single API, simplifying integration for developers on Android. For iOS, it uses Keychain for storing credentials.
For users, Credential Manager unifies the sign-in interface across authentication methods, making it clearer and easier to sign into apps, regardless of the chosen method.
For iOS, it uses Keychain and Autofill.
For more information, please refer to the official documentation.
Add the dependency to your pubspec.yaml file:
credential_manager: <latest_version>Or run:
flutter pub add credential_managerFor comprehensive guides and detailed documentation, please visit our Documentation Page. Here you will find everything you need to get started, including API references, usage examples, and best practices for integrating Credential Manager into your application.
| Android Credential Manager | iOS Passkey Sheet |
|---|---|
|
|
Heads-up: The screenshots above come directly from the official Android and Apple design resources. The bundled example application recreates similar flows but may look slightly different depending on your theme, device, or customizations.
We rely on pre-commit to guarantee formatting and analyzer checks run before every commit.
pip3 install --user pre-commit # first time only
python3 -m pre_commit install # installs the git hook
# (optional) run on the entire repo once
python3 -m pre_commit run --all-filesThe configured hooks will:
- Format every staged Dart file using
dart format. - Format
docSitesources with Prettier. - Run
flutter analyzeacross all packages (including the example app); commits are blocked if any analyzer error occurs.
If you find this library useful and would like to support its development, consider buying me a coffee:
We are looking for maintainers to help us keep this library up-to-date and implement new features. If you are interested in contributing, please reach out via GitHub or open an issue. Your help would be greatly appreciated!
Thanks to all the contributors who have helped make this library better!

