Skip to content

Instantly share code, notes, and snippets.

@arriolac
Created October 3, 2022 23:15
Show Gist options
  • Save arriolac/89a107f77578db8cbc757b6f3b57d2db to your computer and use it in GitHub Desktop.
Save arriolac/89a107f77578db8cbc757b6f3b57d2db to your computer and use it in GitHub Desktop.
// Copyright 2022 Google LLC.
// SPDX-License-Identifier: Apache-2.0
@Preview(
name = "Small font",
group = "Font scales",
fontScale = 0.5f
)
@Preview(
name = "Large font",
group = "Font scales",
fontScale = 1.5f
)
annotation class FontScalePreviews
@Preview(
name = "Dark mode",
group = "UI mode",
uiMode = Configuration.UI_MODE_NIGHT_YES or Configuration.UI_MODE_TYPE_NORMAL,
showBackground = true
)
@Preview(
name = "Light mode",
group = "UI mode",
uiMode = Configuration.UI_MODE_NIGHT_NO or Configuration.UI_MODE_TYPE_NORMAL,
showBackground = true
)
annotation class DarkLightPreviews
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment