flutter_better_auth 0.1.3
flutter_better_auth: ^0.1.3 copied to clipboard
A Dart/Flutter client for the Better Auth platform, enabling secure sign-in, sign-up, and session management in Flutter applications.
Changelog #
0.0.1 #
- Initial release with support for:
- Default API authentication
- Social authentication
- Email, phone number, and username authentication
- Anonymous authentication
0.0.2 #
- Update readme
- Add admin plugin
0.0.3 #
- Refactoring
- Add github example
0.0.4 #
- Add Email OTP
- Add plugin example in readme
0.0.5 #
- Update readme for plugin example
0.0.6 #
- Add JWT support
0.0.7 #
- Fix: update api response types to use correct models from Karuppusamy
0.0.8 #
- Break changes: We change use name parameter with BodyExtra instead of Class.
- Before:
final result = await client.signIn.email( body: SignInEmailBody( email: "test@mail.com", password: "12345678", ), )
- After
final result = await client.signIn.email( email: "test@mail.com", password: "12345678", );
0.0.9 #
- Fix body serialization
0.1.0 #
- Add
flutter_auth_web_2
for social auth.
0.1.1 #
- Remove log.