Minki
04/25/2023, 10:48 AMval scope = rememberCouroutine()
if(showBiometric) {
scope.launch {
//show Biometric
}
}
vs
if(showBiometric) {
val scope = rememberCouroutine()
scope.launch {
//show Biometric
}
}
in the second one, if showBiometric is false, the scope gets killed right?CLOVIS
04/25/2023, 12:11 PMin the second one, if showBiometric is false, the scope gets killed right?Did not test it, but I think so, yes