Gabor Varadi
Gabor Varadi
I have a nagging feeling that StateBundle could be reworked into something akin to the MutableLiveData retrieved from a SavedStateHandle.
https://github.com/Zhuinden/simple-stack-extensions With Fragment 2.7.0 out, that only supports predictive back when using `fragmentManager.addToBackStack()` requires creating a new version of the `DefaultFragmentStateChanger`, that would hopefully seamlessly micromanage the transactions that get...
According to [this discussion on Twitter](https://twitter.com/yahyabayramoglu/status/1233361157420875779), the docs don't reflect intended best practices. I think the docs should be updated to reflect usage of `abstract` when an object can automatically...
This codelab contained basics regarding local data persistence, but didn't add either references to remote data fetching, nor the questionable Repository class. Deprecating it is a mistake. For example, the...
Using `onActivityResult` in https://codelabs.developers.google.com/codelabs/android-room-with-a-view-kotlin/index.html?index=..%2F..index#13 bypasses the original premise of ViewModel described in https://codelabs.developers.google.com/codelabs/android-lifecycles/#5 and is therefore not the best way to represent how to use AAC. **Especially** considering that the...