GarageBox

Results 2 comments of GarageBox

`mPhotoEditorView.source.scaleType = ImageView.ScaleType.CENTER_CROP ` ``` fun loadImage(imgURL: Uri?, errorThumb: Int?, imgView: PhotoEditorView?,mMeasuredWidth:Int) { imgView?.source?.load(imgURL) { placeholder(errorThumb ?: 0) error(errorThumb ?: 0) memoryCachePolicy(CachePolicy.ENABLED) allowHardware(false) size(mMeasuredWidth) } } ``` This worked in...