Document [TimelineItemGroupPosition] and improve preview of [MessageEventBubble].

This commit is contained in:
Benoit Marty 2023-05-26 15:35:33 +02:00 committed by Benoit Marty
parent 6000a7ca5b
commit 6621163d27
38 changed files with 122 additions and 52 deletions

View file

@ -17,6 +17,7 @@
package io.element.android.libraries.core.extensions
fun Boolean.toOnOff() = if (this) "ON" else "OFF"
fun Boolean.to01() = if (this) "1" else "0"
inline fun <T> T.ooi(block: (T) -> Unit): T = also(block)