flutter_better_auth 0.1.3 copy "flutter_better_auth: ^0.1.3" to clipboard
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.

0.1.2 #

  • Remove log.
  • Add condition for social auth on web

Upcoming #

  • Two-Factor Authentication
  • PassKey
  • One-Tap
  • API Key and Organization support
  • One-time-token support
  • Etc ...
9
likes
155
points
178
downloads

Publisher

unverified uploader

Weekly Downloads

A Dart/Flutter client for the Better Auth platform, enabling secure sign-in, sign-up, and session management in Flutter applications.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (license)

Dependencies

cookie_jar, dio, dio_cookie_manager, flutter, flutter_web_auth_2, freezed_annotation, hive, json_annotation, logger, path_provider, retrofit

More

Packages that depend on flutter_better_auth