Skip to content

Instantly share code, notes, and snippets.

@mattrob33
Created June 14, 2023 01:42
Show Gist options
  • Select an option

  • Save mattrob33/3e8eb23f3a97e8f88491e5d23408cf06 to your computer and use it in GitHub Desktop.

Select an option

Save mattrob33/3e8eb23f3a97e8f88491e5d23408cf06 to your computer and use it in GitHub Desktop.
rememberState usage
@Composable fun Screen(
url: String
) {
var count by rememberState { 0 }
val content by rememberState(url) { load(url) }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment