Denis
Denis
Hello. Is it possible to implement some visual effects while navigating through the screens? I mean effects like fade, slide, scale and so on. Are there any extension points to...
This is a shorter version of sorting elements in descending order. It is a pretty common task to sort elements in descending order by multiple fields. For example: building a...
### Use case I use a custom big decimal type and I faced a problem integrating it. My custom big decimal doesn't extend "kotlin.Number" so I can't use it in...
I faced a problem with sealed classes serialization. **To Reproduce** ``` import kotlinx.serialization.Serializable import kotlinx.serialization.encodeToString import kotlinx.serialization.json.Json @Serializable sealed class Project { abstract val name: String @Serializable class OwnedProject(override val...