Continue migrating BugReport/Rageshake/Crash screens
This commit is contained in:
parent
c299ab4031
commit
e56ba5e315
21 changed files with 366 additions and 80 deletions
|
|
@ -1,7 +1,9 @@
|
|||
package io.element.android.x.architecture
|
||||
|
||||
import androidx.compose.runtime.MutableState
|
||||
import androidx.compose.runtime.Stable
|
||||
|
||||
@Stable
|
||||
sealed interface Async<out T> {
|
||||
object Uninitialized : Async<Nothing>
|
||||
data class Loading<out T>(val prevState: T? = null) : Async<T>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue