Hey! Do we have possibility to check raw code generated by @Composable? I tried check Kotlin class byteCode but unfortunatelly I don't see there Composable additions.
r
romainguy
04/10/2022, 7:19 AM
It won't work because of how that feature work (it doesn't run compiler plugins)
romainguy
04/10/2022, 7:19 AM
However you can inspect the .class files generated in the build directory. You can use javap -c or any other decompiler to do so