passwordlezz 0.0.1+1 copy "passwordlezz: ^0.0.1+1" to clipboard
passwordlezz: ^0.0.1+1 copied to clipboard

A Simple login for users. A new way to let user login to the apps they love. Easy to use no password login. Users can log in via a qr-code or filling out their email and clicking the correct number on [...]

Passwordlezz #

Note that this package is still in development and documentation will be added later

A new way to let user login to the apps they love.

Easy to use no password login. Users can log in via a qr-code or filling out their email and clicking the correct number on a trusted device.

Getting Started #

For now, you can get an appId by emailing me. This wil later be replaced by a panel.

Opening the auth ui.

PasswordlezzButton(
    callback: (r) => _result(r),
    appId: 'appId',
),

Handeling result.

There are two states the result can have. With the token, or rejected.

  _result(AuthResult result) {
    setState(() {
      if(result.getToken() != null) {
        this.token = result.getToken();
        this.message = 'You are verified!';
      } else if(result.rejected) {
        this.token = null;
        this.message = 'You were rejected!';
      } else {
        this.token = null;
        this.message = null;
      }
    });
  }
1
likes
20
pub points
0%
popularity

Publisher

verified publisherseamlezz.com

A Simple login for users. A new way to let user login to the apps they love. Easy to use no password login. Users can log in via a qr-code or filling out their email and clicking the correct number on a trusted device.

Homepage

License

unknown (LICENSE)

Dependencies

email_validator, flare_dart, flare_flutter, flutter, http, percent_indicator, provider, qr_flutter

More

Packages that depend on passwordlezz