Is there a way to animate the padding values provi...
# compose
r
Is there a way to animate the padding values provided by Scaffold?
Copy code
Scaffold(
    topBar = { NavigationTopBar(navController, drawerState) },
    bottomBar = { BottomNavigationBar(navController, authViewModel, agreementViewModel) },
    content = { padding -> AppBody(padding, navController, authViewModel, agreementViewModel) },
)
I’m trying to use the accompanist animation to navigate between views that do/don’t have bottom and top nav. The UI jerks briefly right now when the padding values change and it doesn’t look as smooth as it should.