compose-color-picker
compose-color-picker copied to clipboard
Use rememberUpdatedState to prevent stale lambda capture
If a composable passes a lambda argument down to other composables via wrapping, lambda gets captured which may not read the latest state when executed. rememberUpdatedState fixes this problem.