I just tried this destructuring statement: ```val ...
# android
m
I just tried this destructuring statement:
Copy code
val (left, top, right, bottom) = rect
but could not (through code/import completion) get Android Studio to recognize that
Rect
can be destructured, so would not compile. In the end I had to manually insert imports like:
Copy code
import androidx.core.graphics.component1
Any ideas what I was doing wrong?