Skip to content

Instantly share code, notes, and snippets.

View wemrekurt's full-sized avatar
💭
I may be slow to respond.

Emre KURT wemrekurt

💭
I may be slow to respond.
View GitHub Profile
@wemrekurt
wemrekurt / upload_snap.js
Created August 4, 2019 07:02 — forked from Tamal/upload_snap.js
React Native File upload using XMLHttpRequest
_uploadSnap() {
var url = 'http://example.com/upload'; // File upload web service path
var photo = {
uri: this.state.picturePath, // CameralRoll Url
type: 'image/jpeg',
name: 'photo.jpg',
};
var formData = new FormData();
formData.append("file", photo);