Andrei Shikov
Andrei Shikov
I have a slight recollection about Fragment `attach`/`detach` methods and lifecycle, so maybe that's the issue that you are observing. It is still weird to me that view is not...
It did help indeed! Thanks!
Hi @Dixisss If you are using Android theme (xml defined), I am not sure there's a solution better than reinflate your views. In case the theme is some configuration object...
Hey, we do not have any official channel (yet). Looks like I'll need to investigate possible platforms to have such :)
@simonvar Not sure why it was not done in the example app, but the usage is quite straightforward. You can create `AndroidTimeCapsule` instance in `onCreate` of your activity and pass...
Hi, @airatlovesmusic Sorry for a long reply. We usually use `combineLatest` or `withLatestFrom` for this type of use cases. However, note that this is not recommended for more than two...
Hey @VGJohn Looking at your issue: did you try to use fragment lifecycle as a means to solve the problem? We have `Binder` specifically for this case: it connects two...
Hi @tieskedh Currently, feature does not support private states, but you can hide it using binder. ```kotlin // state in feature data class State( val stack: List ) // somewhere...
If you subscribe to state update directly, it is possible to use abstraction similar to yours (although it is better to call it `PublicNavigationStore` as it is not a feature...
@lgtout There are several problems with coroutines that I found while exploring possible solutions: First, they have only experimental support of "hot" observables (in the form of channels). This API...