Morning.
Any way of getting a preview in all supported locales at once?
I know that I can add several preview annotations, but supporting 18 languages, this solution is ugly.
Copy code
@Preview(locale = "en")
@Preview(locale = "es")
w
Wout Werkman
08/20/2024, 11:23 AM
You can make a grouped preview annotation with all the locales you support:
Copy code
@Preview(locale = "en")
@Preview(locale = "es")
annotation class AllLocalesPreview