yeah I read that a bit - though I think I'm trying to understand that at the most basic level if fragments are suggested at all. For instance, in a non-compose world, I could stick an
<http://R.layout.my|R.layout.my>_screen
directly into an Activity if I wanted to, but for most "real world" use cases, it'll be in my best interest to attach a fragment to that activity, which uses
<http://R.layout.my|R.layout.my>_screen
inside of
onCreateView
.
I'm trying to understand if the compose tutorials / docs are sticking
@Composable
views directly into `Activity`'s
setContentView
for simplicity of explanation or as a best practice