Merge branch 'master' of https://github.com/wz366/react-native-fast-image into wz366-master

This commit is contained in:
Dylan Vann 2017-11-29 22:23:55 -05:00
commit f4ab55c3d5
3 changed files with 4 additions and 3 deletions

View File

@ -140,7 +140,7 @@ class FastImageViewManager extends SimpleViewManager<ImageViewWithUrl> implement
eventEmitter.receiveEvent(viewId, REACT_ON_LOAD_START_EVENT, new WritableNativeMap());
Glide
.with(view.getContext())
.with(view.getContext().getApplicationContext())
.load(glideUrl)
.priority(priority)
.placeholder(TRANSPARENT_DRAWABLE)

View File

@ -2,7 +2,7 @@
#import <SDWebImage/UIImageView+WebCache.h>
#import <SDWebImage/SDWebImageDownloader.h>
#import "FLAnimatedImageView.h"
#import <FLAnimatedImage/FLAnimatedImageView.h>
#import <React/RCTComponent.h>
#import <React/RCTResizeMode.h>

View File

@ -33,7 +33,8 @@
"format": "prettier --write --no-semi --single-quote --trailing-comma all ./FastImage.js ./example/*.js ./server/*.js",
"test": "yarn run test:pretty && yarn run test:jest",
"test:jest": "jest *.js",
"test:pretty": "prettier-check --write --no-semi --single-quote --trailing-comma all ./FastImage.js ./example/*.js ./server/*.js"
"test:pretty": "prettier-check --write --no-semi --single-quote --trailing-comma all ./FastImage.js ./example/*.js ./server/*.js",
"postinstall": "git clone https://github.com/rs/SDWebImage.git ios/Vendor/SDWebImage && cd ios/Vendor/SDWebImage && git submodule update --init --recursive && cd ../../.."
},
"dependencies": {
"prop-types": "^15.5.10"