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 6d8fadfa67
commit b971f87ee3
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)