Skip to content

Instantly share code, notes, and snippets.

@Qkyyy
Created September 23, 2021 14:19
Show Gist options
  • Save Qkyyy/9ea870da1a5749d98178dcc1eed97952 to your computer and use it in GitHub Desktop.
Save Qkyyy/9ea870da1a5749d98178dcc1eed97952 to your computer and use it in GitHub Desktop.
private val _product = MutableStateFlow<Product?>(null)
val product: StateFlow<Product?> = _product
fun setProduct(product: Product?) {
_product.value = product
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment