ned1234567
Hey, i'm trying to get the avatar picture this is the code
TypeScript
import { StyleSheet, Text, View, Image } from 'react-native'
import React from 'react'
const Profile = () => {
return (
<View>
<Text>Profile</Text>
<Image
source={{ uri: avatar }}
/>
</View>
)
}
export default Profile
TL;DR
Developers are having trouble accessing the avatar picture in their code. The issue is caused by not properly defining the 'avatar' variable. The solution is to make sure that 'avatar' is properly defined or passed as a prop. Recommended threads
- The current user is not authorized to pe...
I want to create a document associated with user after log in with OAuth. The user were logged in, but Appwrite said user is unauthorized. User is logged in wi...
- self-hosted auth: /v1/account 404 on saf...
Project created in React/Next.js, Appwrite version 1.6.0. Authentication works in all browsers except Safari (ios), where an attempt to connect to {endpoint}/v1...
- Rate Limit of project
AppwriteException: Rate limit for the current endpoint has been exceeded. Please try again after some time. So , how much time I have to wait and why does it h...