Bimba.git

ref: 69173a3d7b96203c44ff3114a13da1feed7eccfc

app/src/main/java/xyz/apiote/bimba/czwek/journeys/JourneysViewModel.kt


 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
// SPDX-FileCopyrightText: Adam Evyčędo
//
// SPDX-License-Identifier: GPL-3.0-or-later
package xyz.apiote.bimba.czwek.journeys

import androidx.lifecycle.LiveData
import androidx.lifecycle.MutableLiveData
import androidx.lifecycle.ViewModel

class JourneysViewModel : ViewModel() {

	private val _text = MutableLiveData<String>().apply {
		value = "This is voyage Fragment"
	}
	val text: LiveData<String> = _text
}