https://kotlinlang.org logo
#compose
Title
# compose
m

Maik

10/19/2020, 8:23 AM
Hello, I have not updated my application for some time. Now I have switched to the current version of Android Studio Canary and Compose. I noticed that you can't jump into the source code of the Compose framework anymore. Is this on purpose, or am I doing something wrong here?
Copy code
// IntelliJ API Decompiler stub source generated from a class file
// Implementation of methods is not available

package androidx.compose.foundation.layout

@kotlin.PublishedApi internal val DefaultRowMeasureBlocks: androidx.compose.ui.node.LayoutNode.MeasureBlocks /* compiled code */

@androidx.compose.runtime.Composable public inline fun Row(modifier: androidx.compose.ui.Modifier /* = compiled code */, horizontalArrangement: androidx.compose.foundation.layout.Arrangement.Horizontal /* = compiled code */, verticalAlignment: androidx.compose.ui.Alignment.Vertical /* = compiled code */, children: @androidx.compose.runtime.Composable() (androidx.compose.foundation.layout.RowScope.() -> kotlin.Unit)): kotlin.Unit { /* compiled code */ }

@kotlin.PublishedApi @androidx.compose.runtime.Composable internal fun rowMeasureBlocks(horizontalArrangement: androidx.compose.foundation.layout.Arrangement.Horizontal, verticalAlignment: androidx.compose.ui.Alignment.Vertical): androidx.compose.ui.node.LayoutNode.MeasureBlocks { /* compiled code */ }
I would be glad about some helpful tips.
g

gildor

10/19/2020, 8:32 AM
It’s a known bug
m

Maik

10/19/2020, 8:42 AM
@gildor Thank you!
a

Afzal Najam

10/19/2020, 1:41 PM
If you clone the Androidx repository, you can still link to it manually for now
a

Adam Powell

10/19/2020, 2:00 PM
Or browse it at cs.android.com
2 Views