Skip to content

Instantly share code, notes, and snippets.

@lelandrichardson
Created August 27, 2020 21:56
Embed
What would you like to do?
@Composable
fun App(items: List<String>, query: String) {
val results = items.filter { it.matches(query) }
// ...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment