sdk-for-react-native
sdk-for-react-native copied to clipboard
Official Appwrite React Native SDK 💙 ⚛︎
## What does this PR do? (Provide a description of what this PR does.) ## Test Plan (Write your test plan here. If you changed any code, please provide us...
### 💭 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')...
### 👟 Reproduction steps I just simply trying to register user based on email and password. This function is responsible for createUser. ```javascript export async function createUser(email, password, userName) {...
### 👟 Reproduction steps Start a new React Native project. Enable OAuth. ```javascript import React from 'react'; import {Button, Text, View} from 'react-native'; import {Client, Account} from 'appwrite'; const client...
## What does this PR do? (Provide a description of what this PR does.) ## Test Plan (Write your test plan here. If you changed any code, please provide us...
### 👟 Reproduction steps I just used this sdk with my bare react native project and encountern the error that this package uses expo-file-system and I have to use expo...
### 👟 Reproduction steps When I try to use Query.search('title', query) , it works for all the worlds except words having 'a' as a character. ### 👍 Expected behavior It...
### 👟 Reproduction steps I encountered an issue while integrating the **react-native-appwrite** SDK into my React Native project. The error indicates that the Modal component from React Native is missing...
## What does this PR do? (Provide a description of what this PR does.) ## Test Plan (Write your test plan here. If you changed any code, please provide us...
### 👟 Reproduction steps Do session.setSelfSigned(true); Self-signed is not appearing ### 👍 Expected behavior Self-signed should appear ### 👎 Actual Behavior Self-signed is not available in the SDK ### 🎲...