Minki
val scope = rememberCouroutine() if(showBiometric) { scope.launch { //show Biometric } }
if(showBiometric) { val scope = rememberCouroutine() scope.launch { //show Biometric } }
CLOVIS
in the second one, if showBiometric is false, the scope gets killed right?
A modern programming language that makes developers happier.