Ranga Vadhineni
Ranga Vadhineni
ok thanks will try and let you know
One question: How are these 2 classes are linked to each other? RNImageLoader.m RNGalleryManager.m
Thanks thats clear now So your implementation of RNImageLoader.m overrides the RN implementation?
The RCTImageURLLoaders and both reported that they can load the URL assets-library://asset/asset.mov?id=11D2B45E-FD85-4E00-9C99-9224964BF995&ext=mov, and have equal priority (0). This could result in non-deterministic behavior. Getting this error?
if we set loaderPriority, its working , no need to remove CameraRoll ``` - (float)loaderPriority{ return 5; } ```
initial test showing not much difference between uri or lowQualityUri, taking almost same time to load and with lowQualityUri the quality is too low and blurry
one more question: i was able to load images without the RNImageLoader.m class, what is the need for this additional class?
simplifying the for in loop to below, made it fast. reduced time from 1000ms to < 100ms ``` for (PHAsset* asset in results) { [assets addObject:@{ @"width": @([asset pixelWidth]), @"height":...
ok will do more research and testing and then will do pull request.
how to get response the from library faster and also image loading.