react native send image to server code example
Example 1: display image base64 in REACT NATIVE
const encodedBase64 = 'R0lGODlhAQABAIAAAAAA...7';
<Image source={{uri: `data:image/gif;base64,${encodedBase64}`}} />
Example 2: react native open email client
<Button onPress={() => Linking.openURL('mailto:[email protected]') }
title="[email protected]" />
With subject and body:
<Button onPress={() => Linking.openURL('mailto:[email protected]?subject=SendMail&body=Description') }
title="[email protected]" />
Example 3: how to put firebase config in a sperate file react native
const firebaseApp = firebase.initializeApp(firebaseConfig);
export default firebaseApp;