I'm new to Jetpack Compose. I created an app and as a preview I get only the views, in my case a text view.
How can I preview a screen and not an individual element?
I want something like that:
I am using Android Studio 2020.3.1 Canary 8.
@Preview(showSystemUi = true)
Use the annotation @Preview(showSystemUi = true).
More info about the preview annotations here.
@Preview(showSystemUi = true)
– Gabriele Mariotti