appwrite/docs/examples/1.8.x/client-react-native/examples/avatars/get-browser.md
2025-08-26 15:40:03 +12:00

445 B

import { Client, Avatars, Browser } from "react-native-appwrite";

const client = new Client() .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint .setProject('<YOUR_PROJECT_ID>'); // Your project ID

const avatars = new Avatars(client);

const result = avatars.getBrowser({ code: Browser.AvantBrowser, width: 0, // optional height: 0, // optional quality: -1 // optional });

console.log(result);