0.1.1 • Published 6 years ago

@rahsheen/google-signin v0.1.1

Weekly downloads
1
License
MIT
Repository
-
Last release
6 years ago

@rahsheen/google-signin

A simple React hook for using Google Signin on React and React Native.

Why You Need This

Setting up Google Signin can be a pain. This simple hook aims to simplify the setup and usage so you can sign-in with Google and access Google API's in a simple way on multiple platforms.

It also makes the API's consistent between React and React Native to more easily share code.

Prerequisites

Built on:

"react": ">=16", "react-native": ">=0.59", "react-native-google-signin": ">=2.1"

Installing

npm install @rahsheen/google-signin

Usage

React JS example

const { userInfo, error, signIn, signOut, loading } = useGoogleSignIn(config);

React Native example

const {userInfo, error, signIn, signOut, loading, tokens} = useGoogleSignIn(
    config,
    GoogleSignin, // From react-native-google-signin
  );

Built With

Contributing

Please read CONTRIBUTING.md for details on our code of conduct, and the process for submitting pull requests to us.

License

This project is licensed under the MIT License - see the LICENSE.md file for details

Acknowledgments