This message was deleted.
# compose
s
t
Could this be related to https://stackoverflow.com/a/75191981
z
Are you using adjustResize and disabling decorFitsSystemWindows?
p
Yeah, I've tried both, no difference
Could this be related to
Not sure, seems similar, but the other way around. I'm not using a bottom sheet here.
z
Or AnimatedContent? Including Jetpack navigation
p
I'm using jetpack navigation yeah. There is some AnimatedVisibility in the fields, but I think it's not triggering. I can try removing that.
seems to be related to
Modifier.safeDrawingPadding()
. If I remove it, it fixes the problem.
I was doing this
Copy code
setDecorFitsSystemWindows(window, false)

        setContent {
            AppTheme {
                Surface(
                    Modifier
                        //.safeDrawingPadding()
                        .fillMaxSize(),
                ) {
                    MainNavigation()
                }
            }
        }
I presume this is a bug?
👍🏻 1