Mark Buikema
07/13/2018, 2:47 PMMutableLiveData
from my ViewModel
, only LiveData
, in order to prevent the activities and fragments from changing values of the `LiveData`s?radityagumay
07/14/2018, 11:38 AMradityagumay
07/14/2018, 11:38 AMarekolek
07/16/2018, 9:12 AMprivate val _user = MutableLiveData<User>()
val user: LiveData<User> get() = _user
but this would be better https://github.com/Kotlin/KEEP/pull/122 if it was supported directly in Kotlinarekolek
07/16/2018, 9:15 AMradityagumay
07/16/2018, 11:56 AM