@snapchat/snap-kit-react-native
Version:
React Native bindings for Snap Kit.
84 lines (56 loc) • 2.12 kB
Markdown
for Snap Kit.
```sh
npm install @snapchat/snap-kit-react-native
```
Currently we only provide support for the following kits:
- [Login Kit](https://kit.snapchat.com/login-kit)
- [Creative Kit](https://kit.snapchat.com/creative-kit)
\* _Support for other kits coming soon..._
API section will be updated soon and so for now refer the `LoginKit.ts` file in the source for details on the supported APIs.
```js
import LoginKit from '@snapchat/snap-kit-react-native';
// ...
LoginKit.login()
.then(() => {
// handle login success
})
.catch((error) => {
// handle login failure
});
```
API section will be updated soon and so for now refer the `CreativeKit.ts` file in the source for details on the supported APIs.
```js
import CreativeKit from '@snapchat/snap-kit-react-native';
// ...
CreativeKit.sharePhoto({
content: {
// add photo data
},
sticker: {
// optional sticker data
},
attachmentUrl: '<optional URL to attach>',
caption: '<optional text to attach>',
});
```
Refer sample apps for the respective kits to get started quickly.
- [Login Kit](https://github.com/Snapchat/login-kit-sample/tree/main/react-native)
- [Creative Kit](https://github.com/Snapchat/creative-kit-sample/tree/main/react-native)
Many thanks to [Jason Safaiyeh](https://github.com/safaiyeh) for their immence contributions during the initial development of the project.
Any access or use of the included software, associated documentation, software
code, or other materials made available by Snap Inc. (and its affiliates) is
subject to your agreement and acceptance (by clicking the accept button) of the
Snap Developer Terms of Service found at:
https://kit.snapchat.com/manage/eula/?viewOnly=true
If you do not wish to be a party to these terms or if you do not agree to all
of these terms, then do not use or otherwise access any such software,
documentation, software code, and other materials.
Official React Native bindings