Skip to content

Instantly share code, notes, and snippets.

@harmittaa
Created March 12, 2025 19:04
Show Gist options
  • Save harmittaa/f6ce22c3f8507d6eb4295616f9a3215c to your computer and use it in GitHub Desktop.
Save harmittaa/f6ce22c3f8507d6eb4295616f9a3215c to your computer and use it in GitHub Desktop.
TimePickerPreview
@PreviewLightDark
@Composable
fun TimePickerPreview() {
AppTheme {
Surface {
TimePicker(
state = rememberTimePickerState(
initialHour = 11,
initialMinute = 11,
is24Hour = true,
)
)
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment