https://kotlinlang.org logo
#compose
Title
# compose
c

Colton Idle

08/17/2020, 7:55 PM
Not sure if this is something compose can help with, but going off of the question asked yesterday "Hi, is it possible to implement edge-to-edge by compose atm?" I just want to say that I hope implementing e2e with compose is a bit easier. Right now having to inset every one of my recyclerviews on each screen is annoying and clipToPadding = false, etc, but having apps that go off of @cb presentation where he said drawing under nav and status bar is recommended strongly it would be nice if this was like a first class thing.
c

cb

08/17/2020, 8:50 PM
having to inset every one of my recyclerviews on each screen is annoying
I don't think this is going to change much. Only you know which views need to inset, and how to inset them. We can make the application of insets easier (https://goo.gle/compose-insets), but making it automatic is very dependent on the UI and how it's implemented. We can however plug everything in to Scaffold, but that doesn't handle every UI.
c

Colton Idle

08/17/2020, 9:01 PM
Thanks for the clarification @cb
👍 1
2 Views