login_client_flutter

login_client_flutter pub.dev badge login_client_flutter continuous integration badge

flutter_secure_storage implementation of a CredentialsStorage for the login_client package.

Usage

final loginClient = LoginClient(
  credentialsStorage: const FlutterSecureCredentialsStorage(),
  // ...
);

Android javax.crypto.BadPaddingException

Exclude Flutter Secure Storage from Android full backup.

<!-- AndroidManifest.xml -->

    <application
        ...
        android:fullBackupContent="@xml/backup_rules">
<!-- res/xml/backup_rules.xml -->

<?xml version="1.0" encoding="utf-8"?>
<full-backup-content>
    <exclude domain="sharedpref" path="FlutterSecureStorage" />
</full-backup-content>

Libraries

login_client_flutter
flutter_secure_storage implementation of the credentials storage.