Open RuwanPradeep0 opened 6 months ago
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(), 'me@example.com', '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
ID.unique()
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.
💭 Description
in here instant of using
need to use
if not
ID.unique()
will not be work properly👀 Have you spent some time to check if this issue has been raised before?
🏢 Have you read the Code of Conduct?