sdk-for-react-native
sdk-for-react-native copied to clipboard
📚 Documentation: need to import relevant class to create user without an error
💭 Description
import { Client, Account } from 'react-native-appwrite';
// Init your React Native SDK
const client = new Client();
client
.setEndpoint('http://localhost/v1') // Your Appwrite Endpoint
.setProject('455x34dfkj')
.setPlatform('com.example.myappwriteapp') // YOUR application ID
;
const account = new Account(client);
// Register User
account.create(ID.unique(), '[email protected]', 'password', 'Jane Doe')
.then(function (response) {
console.log(response);
}, function (error) {
console.log(error);
});
in here instant of using
import { Client, Account } from 'react-native-appwrite';
need to use
import { Client, Account ,ID } from 'react-native-appwrite';
if not ID.unique() will not be work properly
👀 Have you spent some time to check if this issue has been raised before?
- [X] I checked and didn't find similar issue
🏢 Have you read the Code of Conduct?
- [X] I have read the Code of Conduct
I'm guessing you ment this blog post? https://appwrite.io/blog/post/introducing-appwrite-react-native-sdk
This seems to be fixed. I could not find any other references.