@ticnat/nativescript-image-cache
Version:
Plugin for caching images
14 lines • 562 B
JavaScript
/// <reference path="./types.d.ts" />
export class StretchMapping {
constructor() { }
static get(key) {
return this.stretchMap.get(key);
}
}
StretchMapping.stretchMap = new Map([
['aspectFit', com.facebook.drawee.drawable.ScalingUtils.ScaleType.FIT_CENTER],
['aspectFill', com.facebook.drawee.drawable.ScalingUtils.ScaleType.CENTER_CROP],
['fill', com.facebook.drawee.drawable.ScalingUtils.ScaleType.FIT_XY],
['none', com.facebook.drawee.drawable.ScalingUtils.ScaleType.CENTER],
]);
//# sourceMappingURL=stretch-mapping.js.map