It is possible to see the Width, Height’s layout property like Hug contents, Fill container, Fixed width in Layout mode, but I can’t check it in Compose code. Dev mode’s compose code just show fixed values like width: 000, height: 000.
but Compose has own fill property like
modifier = Modifier
.fillMaxWidth()
.fillMaxHeight()
How can I get those value in compose code mode?
Even I can check display options in SWIFTUI code .frame
property or CSS’s display
.
++If there is already a way to do this, please let me know. I tried the Codia AI plugin, but it doesn’t work, just the loading progress bar goes round and round infinitely.