Viachaslau Katsuba

Results 18 comments of Viachaslau Katsuba

@hoanghai9650 Hi, thanks for advise, going to add it (iOS swipe back action, or else smth to interact/pass into lib)

Research result: iOS nativ nav seems to use somthing close to android shared-transition (especially for top bar) Animation itself is easy to replicate with ```kotlin Navigation( ... contentTransformProvider = {...

PS: feature/predictive-back - here is some very basic example on how it migh looks

UPD: work in progress, https://github.com/ComposeGears/Tiamat/tree/feature/content-transition-impl here is impl. Waiting for google to fix seekable transition bug

UPD: google did fix it... https://github.com/ComposeGears/Tiamat/tree/feature/content_transition here is initial implementation

@gemini-code-assist /gemini review /gemini summary

@gemini-code-assist /gemini review /gemini summary

UPD1: general usage of serialization inside `rememberSaveable` + custom saver already works ```kotlin @Serializable data class SomeSerializableClass(val data: Int) internal fun serializableSaver( serializer: KSerializer, configuration: SavedStateConfiguration = SavedStateConfiguration.DEFAULT, ): Saver...

UPD2: `rememberSerializable` introduced in 1.9.*

UPD3: it looks like we cant use `@Serializable` classes as Args + saveable mode directly serializer resolved during `remeberSerializable` & `rememberSaveable` calls via `reified` inline fun.. We need to have...