Hi
@Leland Richardson [G], was wondering what's your opinion about shared ui and how to do it in compose.
I created this sample app to demonstrate some questions I have.
https://github.com/qrezet/SharedUiSample/blob/master/app/src/main/java/com/sample/sampleapp/MainActivity.kt (The comments in the code highlights my questions)
I was wondering if it would be better to continue with this approach..
or
redefine the "shared ui" across each screen? similar to how
JetNews is doing it.
I feel like redefining the "shared ui" across screens would solve most of my issues with the first approach but I also don't want my "shared ui" to be going in and out every time the user navigates from screen to screen.
Any recommendation? Thanks in advance.