mirror of
https://github.com/bitwarden/android.git
synced 2024-11-21 17:05:44 +03:00
Add helper property for retrieving current VM state (#257)
This commit is contained in:
parent
a789411b90
commit
d1db7521ce
1 changed files with 5 additions and 0 deletions
|
@ -29,6 +29,11 @@ abstract class BaseViewModel<S, E, A>(
|
|||
protected val eventChannel: Channel<E> = Channel(capacity = Channel.UNLIMITED)
|
||||
private val internalActionChannel: Channel<A> = Channel(capacity = Channel.UNLIMITED)
|
||||
|
||||
/**
|
||||
* A helper that returns the current state of the view model.
|
||||
*/
|
||||
protected val state: S get() = mutableStateFlow.value
|
||||
|
||||
/**
|
||||
* A [StateFlow] representing state updates.
|
||||
*/
|
||||
|
|
Loading…
Reference in a new issue