-
this is my screen defination:
```kotlin
class IllustDetailScreen(private val illust0: Illust) : Screen
@Serializable
data class Illust(
val id: Int,
val title: String,
)
```
whe…
-
First of all, many thanks for your efforts in creating KMM-ViewModel :)
Are there any plans on providing integration of any kind with SavedStateHandle and Parcelize? In our project we have our own …
-
### Description
Now that we can do `id AS VALUE` and `version AS LOCK` and there's also the json extension would it be possible to support Parcelable using an extension?
As for the syntax I'd imag…
-
Android studio is complaining about @Parcelize although the code builds successfully without any issues.
I will share the Build file in case:
```
load("//tools/jvm:kt.bzl", "kt_compiler_plugi…
-
Having a screen such as
```kotlin
@Parcelize
data object Static : StaticScreen
@CircuitInject(Static::class, AppScope::class)
@Composable
fun StaticUi(screen: Static, modifier: Modifier) {} …
-
#### Bug Report Checklist
- [x] Have you provided a full/minimal spec to reproduce the issue?
- [x] Have you validated the input using an OpenAPI validator ([example](https://apidevtools.org/swagg…
-
Possibility to use realm with Parcelize annotation from kotlin experiments.
https://github.com/Kotlin/KEEP/blob/master/proposals/extensions/android-parcelable.md
-
`Cannot access 'dev.icerock.moko.parcelize.Parcelable' which is a supertype of 'in.shabinder.soundbound.models.SongModel'. Check your module classpath for missing or conflicting dependencies
`
sha…
-
### Steps to reproduce
* JaCoCo version: 0.8.2
* Operating system: Android
* Tool integration: Gradle
* Steps:
1. kotlin java class:
```
import android.os.Parcelable
import kotlinx.parceliz…
-
```
package com.example.imagesearch.data
import android.os.Parcelable
import kotlinx.parcelize.Parcelize
@Parcelize
data class ImageModel(
val query: String,
val sort: String,
…