How to pinch and scale image size simultaneously?
Open
- Dominant language
- Java
- Stars
- 18.8k
- Forks
- 3.9k
- PR merge metrics
- No merged PRs in 30d
Description
I'm loading an imageview with picasso to specific width and height.
```
Picasso.get().load(imageUri)
.error(R.drawable.image1)
.resize(width, height)
.into(imageView);
```
No I want to be able to pinch the imageview so that image size becomes larger or smaller than initial image size.
Now I can only pitch the image inside its initial image size.
How can I do it?
Contributor guide
Assessment
This issue has not been assessed yet.