I was using `Modifier.size(dp)` , and I tried to c...
# compose
v
I was using
Modifier.size(dp)
, and I tried to change its
size(dp)
again, but it doesnt get change, it fixes size with respect to the first value which we set, is this okay? I dont know, but felt weird and okay at same time
s
size is changed to requiredSize
s
Size modifiers were renamed. Modifier.width/height/size were renamed to requiredWidth/requiredHeight/requiredSize. Modifier.preferredWidth/preferredHeight/preferredSize were renamed to width/height/size. (I5b414)
v
I updated to beta01, still size() was there, dont know why, anyways thanks