VancedManager/app/src/main/java/com/vanced/manager/ui/dashboard/DashboardViewModel.kt

13 lines
346 B
Kotlin
Raw Normal View History

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