``` val windowInfo = LocalWindowInfo.current ...
# compose-ios
j
Copy code
val windowInfo = LocalWindowInfo.current
    val isInRecentApps by rememberUpdatedState(!windowInfo.isWindowFocused)

    LaunchedEffect(isInRecentApps, signInState) {
        println("isInRecentApps: $isInRecentApps")
    }
I'm currently experiencing issues with LocalWindowInfo on iOS. It doesn't seem to detect when the app is not focused (i.e., when switching to recent apps or multitasking). I'm using
CMP 1.8.1
on
iOS 18.4 and 26 Beta
Is anyone else encountering this problem?
a
Hi! Could you please file an issue on our YouTrack https://youtrack.jetbrains.com/newIssue?project=CMP
🫡 1