Zach Klippenstein (he/him) [MOD]
05/31/2020, 6:07 PMe: kotlin.UninitializedPropertyAccessException: Parent not initialized: org.jetbrains.kotlin.ir.declarations.impl.IrValueParameterImpl@e27c4d
Posting eagerly just in case @Leland Richardson [G] already fixed this one too 😜Leland Richardson [G]
05/31/2020, 6:09 PMZach Klippenstein (he/him) [MOD]
05/31/2020, 6:14 PMLeland Richardson [G]
06/02/2020, 7:21 PMKazemihabib1996
06/12/2020, 8:11 AMval anchors = listOf(minPx, maxPx, maxPx / 2)
val flingConfig = AnchorsFlingConfig(anchors.map { it.value })
TO:
val flingConfig = AnchorsFlingConfig(anchors.map(Px::value))
I use dev13