我想创建一个名为***@MyComposablePreview***的注解,它由以下内容组成:
@Preview(
uiMode = Configuration.UI_MODE_NIGHT_NO,
showBackground = true,
name = "Light Mode"
)
@Preview(
uiMode = Configuration.UI_MODE_NIGHT_YES,
showBackground = true,
name = "Dark Mode"
)
@Composable
这样我就可以在一个可组合函数中调用它,像这样:
@MyComposablePreview
fun CardPreiview() {
//Code of preview
}
有没有可能在jetpack compose中做到这一点?我尝试使用带注解的类,但我不能:/
1条答案
按热度按时间iqjalb3h1#
您可以使用以下命令: