BTW, How to resize a vector image ? ``` Container(...
# compose
a
BTW, How to resize a vector image ?
Copy code
Container(modifier = Size(width = 200.dp, height = 200.dp)) {
     DrawVector(vectorImage = +vectorResource(weather.condition.icon), fit = ScaleFit.Fit)
 }
weather.condition.icon
is a
@DrawableRes
. I tried to use
ScaleFit.FillMaxDimension
but nothing is drawn at all.