Problem with LiveData variables in ViewModel and passing data to View
Github Project Link
This is my project, if you have a moment and would look at what it's about, I would be grateful.
So i my LoginViewModel.kt i have two variables and some fun working on LiveData:
private val _loggedInUser = MutableLiveData()
var loggedInUser: LiveData = _loggedInUser
I have also fetching function to this variables:
private fun fetchLoggedInUser(username: String) {...