Generator-Attestation-Covid-19/app/src/main/java/fr/sanchezm/attestationsCovid19/ui/home/HomeViewModel.kt

13 lines
344 B
Kotlin

package fr.sanchezm.attestationsCovid19.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
}