VancedManager/app/src/main/java/com/vanced/manager/ui/home/HomeViewModel.kt

13 lines
331 B
Kotlin
Raw Normal View History

2020-03-16 15:41:57 +00:00
package com.vanced.manager.ui.home
import androidx.lifecycle.LiveData
import androidx.lifecycle.MutableLiveData
import androidx.lifecycle.ViewModel
class HomeViewModel : ViewModel() {
private val _text = MutableLiveData<String>().apply {
value = "This is home Fragment"
}
val text: LiveData<String> = _text
}