The below code will print B
B
null?.let { println("A") } ?: println("B")
but the below code doesn't render B
null?.let { Text(text = "A") } ?: Text(text = "B")
Why? ๐ค
It's a bug ๐
issuetracker.google.com/issues/199509587?pli=1