This file contains 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
@PreviewLightDark | |
@Composable | |
fun ButtonPreview() { | |
AppTheme { | |
Button(onClick = {}) { | |
Text("This is onPrimary") | |
} | |
} | |
} |
This file contains 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
@PreviewLightDark | |
@Composable | |
fun TimePickerPreview() { | |
AppTheme { | |
Surface { | |
TimePicker( | |
state = rememberTimePickerState( | |
initialHour = 11, | |
initialMinute = 11, | |
is24Hour = true, |
This file contains 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
@PreviewLightDark | |
@Composable | |
fun ButtonPreview() { | |
ComposeColorsTheme { | |
Surface { | |
Row { | |
Button( | |
onClick = {}, | |
enabled = true | |
) { |
OlderNewer