github_signin_promax 0.0.7+2 copy "github_signin_promax: ^0.0.7+2" to clipboard
github_signin_promax: ^0.0.7+2 copied to clipboard

the GitHub OAuth Login package! This package is designed to simplify the process of implementing GitHub OAuth login functionality in your Flutter apps.

github_signin_promax package #

Sign In With GitHub Promax https://pub.dev/packages/github_signin_promax

Getting Started #

Add package dependency

github_signin_promax: ^0.0.7+2

Perform Sign In With GitHub

How to use #

    
    // create required params
    var params = GithubSignInParams(
      clientId: 'XXXXXXXXXXXXXXXXXXXXXXXXXXXXXX',
      clientSecret: 'XXXXXXXXXXXXXXXXXXXXXXXXXX',
      redirectUrl: 'http://localhost:3000/auth/github/callback',
      scopes: 'read:user,user:email',
    );

    // Push [GithubSigninScreen] to perform login then get the [GithubSignInResponse]
    Navigator.of(context).push(MaterialPageRoute(builder: (builder) {
      return GithubSigninScreen(
        params: params,
        headerColor: Colors.green,
        title: 'Login with github',
      );
    })).then((value) {
      // TOTO: handle the response value as a GithubSignInResponse instance
    });

Showcase #

Showcase

15
likes
0
pub points
64%
popularity

Publisher

verified publisherdeveloperfect.com

the GitHub OAuth Login package! This package is designed to simplify the process of implementing GitHub OAuth login functionality in your Flutter apps.

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter, flutter_inappwebview, http

More

Packages that depend on github_signin_promax