Created
August 27, 2020 21:56
-
-
Save lelandrichardson/58d8c43a4d25fafee418c1a397d95b19 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@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