Enguerran Weiss

Results 14 comments of Enguerran Weiss

I'm not sure that repo is still maintained. However, I forked it so we can still work on it : https://github.com/enguerranws/react-native-confetti/

Same here: ``` path: local: "dist/" ``` matches : ``` [ + ] File uploaded: build/bower_components/whatever/dist/whatever.js: ``` I resolved it adding an exclude parameter, but I think it would be...

Hi @gs-akhan, sure it does, but adding a close button (a simple cross in the corner) should make this less implicit? That being said, I guess I can do it...

> That being said, I guess I can do it by simply adding some styles. Well, no. I would simply add an `` component on the backdrop, but it can't...

> Btw how do you plan to add that cross, as an image ? SVG ? Right now, I think of a RN Image component (as SVG support means some...

>There is an indicator component that is used to render a drop icon The indicator property shows an indicator on the select item itself, not in the modal. I would...

Well, I don't know why, the issue is gone now... But still have another issue: now the response comes back with an error 400 `rest_upload_no_data `. As I copied /...

Hi, thanks for your reply. The value of URI is a string like `file://Users/enguerran/Library/Developer/CoreSimulator/Devices/6FD23363-521D-4DF8-85BA-3E9160758B73/data/Containers/Data/Application/D84B9177-EB10-486A-A587-14AC04B52709/Documents/7E3741EA-81F0-4A5E-91D4-DEC48069F8F5.jpg` as I'm testing on iOs simulator. As the docs says `a String describing an image file...

I'm using react-native-image-picker right now. Following the docs (https://github.com/react-community/react-native-image-picker#the-response-object), I can retrieve the image path, some urls, base64 data, etc. I'm trying getting image data as base64 and make a...

So, here's the result, I changed the original uri string to a buffer containing the base64 image data: ``` function base64DataToBuffer(dataString) { response = new Buffer(dataString, 'base64'); return response; }...