Description
Hey,
The library is amazing, but I have an issue that I don't know how to solve.
I want to put the Button
inside CollapsingToolbarScaffold
, but I want it to be always shown, no matter the state of CollapsingToolbarScaffold
. Currently if you put it inside it won't show until the state of the toolbar collapses.
1 solution I tried is to put the Button
outside of CollapsingToolbarScaffold
, but then you have a button that is not part of the content that you want to show.
For example if you have an AnimatedNavHost
inside the content of CollapsingToolbarScaffold
to manage the screens, the button inside those screens is different, but won't be shown at the bottom of the screen (over the content), but it will be shown at the bottom of the content.
To summarize, is there any way to "flag" a composable, so that it is not influenced by the scrolling state, but is independent and still part of the CollapsingToolbarScaffold
content?