supabase_auth_ui 0.0.1-dev.3 copy "supabase_auth_ui: ^0.0.1-dev.3" to clipboard
supabase_auth_ui: ^0.0.1-dev.3 copied to clipboard

outdated

UI library to implement auth forms using Supabase and Flutter

0.0.1-dev.3 #

  • BREAKING: update supabase_flutter to v1.0.0-dev.9
  • BREAKING: AuthAction and PhoneAuthAction are now SupaAuthAction
  • BREAKING: SupabaseAuthUi class is now removed to let users use Supabase.instance directly
  • BREAKING: removed the success and fail dialog in favor of onSuccess and onError
  • feat: introduce onSuccess and onError methods on UI components to handle successful and failed auth actions
  • feat: export supabase_flutter package
  • chore: added some docs on public members
  • feat: add phone auth support
  • fix: only validate forms upon submission
  • feat: metadataFields has been added to add additional fields to the signup form to pass data as metadata in Supabase
    SupaEmailAuth(
        authAction: AuthAction.signUp,
        metadataFields: [
            MetaDataField(
                prefixIcon: const Icon(Icons.person),
                label: 'Username',
                key: 'username',
                validator: (val) {
                    if (val == null || val.isEmpty) {
                    return 'Please enter something';
                    }
                    return null;
                },
            ),
        ],
        onSuccess: _handleSignupSuccess,
    )
    

0.0.1-dev.2 #

  • fix: add github actions and fix errors in example
  • fix: refactor SocialProviders by using Dart 2.17 enhanced enum
  • chore: remove flutter-plugins auto generated files from version control
  • fix: update social sign in button text
  • fix: Replace GotrueError with GoTrueException
  • fix: update supabase_flutter to v1.0.0-dev.3

0.0.1-dev.1 #

  • Initial developer preview release.
134
likes
0
points
2.42k
downloads

Publisher

verified publishersupabase.io

Weekly Downloads

UI library to implement auth forms using Supabase and Flutter

Homepage
Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

email_validator, flutter, font_awesome_flutter, supabase_flutter

More

Packages that depend on supabase_auth_ui