class HomeViewModel : ViewModel() { private val _text = MutableLiveData().apply { value = "This is home Fragment" } var text: LiveData = _text fun setText(newtext: String) { _text.postValue(newtext) } }