Gerry Fletcher

Results 11 comments of Gerry Fletcher

I would also like to see this, particularly for use with `react-native-fast-image` 😃

I have also built a full featured image + video gallery using `react-native-gallery-swiper`. I had issues on Android using `react-native-image-zoom-viewer`, so it's worth evaluating all three libraries before choosing :)

I'm also finding that the `AbortController` isn't cancelling the request. It's putting the promise into a failed state, but the upload appears to continue as before.

This is precisely my use-case, I'm uploading multiple files in one multipart form and I'd like to stream each one directly to `s3` without writing to disk. `http4s` supports streaming...

As discussed, I get around this by configuring the PYTHONPATH: ```shell git clone https://github.com/org/template.git export PYTHONPATH=$PYTHONPATH:`pwd`/template/hooks cookiecutter ./template ``` It's not ideal for public templates though, preferably end users don't...

@pavelnaumov Are you able to share more specifically what you used to get video to work? Perhaps it's due to a difference in version, but there are some weird styles...

For anyone interested, I can confirm that the width + height given to the parent container is proportional to the image size. You can provide the image size if you...

You could use `react-native-file-fs` to look up the `stat`(istics) of the file, and check the `size` property which returns the number of bytes. ```typescript const input: string = "file://..."; const...

@simu Providing the context as part of the CLI arguments (your first proposition) makes sense to me. I was taking a look at copier and it seems you re-submit the...