need to bind data btw master and detail in the detail ! images never load ?Système_de_proximité
parent
ce1e053442
commit
6c15c19420
@ -0,0 +1,16 @@
|
||||
package fr.iut.cinecool.model
|
||||
|
||||
import androidx.lifecycle.ViewModel
|
||||
import androidx.lifecycle.LiveData
|
||||
import androidx.lifecycle.MutableLiveData
|
||||
|
||||
|
||||
class cineViewModel : ViewModel() {
|
||||
private val _cine = MutableLiveData<fr.iut.cinecool.API.Movie>()
|
||||
val cine: LiveData<fr.iut.cinecool.API.Movie> = _cine
|
||||
|
||||
fun setCine(cine: fr.iut.cinecool.API.Movie) {
|
||||
_cine.value = cine
|
||||
}
|
||||
|
||||
}
|
Loading…
Reference in new issue