```@Preview @Composable private fun FooScreenPrevi...
# compose
u
Copy code
@Preview
@Composable
private fun FooScreenPreview() {
    PlaygroundTheme { <---------------------
        FooScreen(..)
    }
}
Is there a way to do away with always specifying a theme? custom annotation or something?
🚫 3
s
Make a live template which just pre-fills this for yourself
👍 1