Android kotlin room database
I'm trying to live count some value, when I insert stuff in db and get it with getCount() it returning it well but i want to live update Text in Bar, it updates after app reset but not updating live, am I missing something?
Viewmodel:
@HiltViewModel
class appViewModel @Inject constructor(
private val appDao: appDao
) : ViewModel() {
private val _Count = MutableStateFlow(0)
val Count: StateFlow = _Count.asStateFlow()
init {
viewModelScope.launch {...