When using Compose 1.6.0, the function names are no longer available. This is reproduced in the nestedLayouts test which fails:
expected to contain:
Box:
Box { test-tag:"root" }
├─Box
├─Column
│ ├─Box
│ ╰─Box
╰─Row
├─Box
╰─Box
but was:
:
{ test-tag:"root" }
├─
├─
│ ├─
│ ╰─
╰─
├─
╰─
at radiography.test.compose.ComposeUiTest.nestedLayouts(ComposeUiTest.kt:350)
It looks to be related to this change in Compose: https://android-review.googlesource.com/c/platform/frameworks/support/+/2741462. However, it doesn't seem as simple as calling composer.collectParameterInformation().
When using Compose 1.6.0, the function names are no longer available. This is reproduced in the
nestedLayoutstest which fails:It looks to be related to this change in Compose: https://android-review.googlesource.com/c/platform/frameworks/support/+/2741462. However, it doesn't seem as simple as calling
composer.collectParameterInformation().