Created
October 3, 2022 23:15
-
-
Save arriolac/89a107f77578db8cbc757b6f3b57d2db to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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