Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
commandiron committed Nov 29, 2022
1 parent c60a4cb commit 4a75e8d
Showing 1 changed file with 2 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,7 @@ class MainActivity : ComponentActivity() {
horizontalAlignment = Alignment.CenterHorizontally,
verticalArrangement = Arrangement.Center
) {
WheelTimePicker(
timeFormat = TimeFormat.AM_PM
) { snappedTime ->
WheelTimePicker { snappedTime ->
println(snappedTime)
}
WheelDatePicker { snappedDate ->
Expand All @@ -67,7 +65,7 @@ class MainActivity : ComponentActivity() {
border = BorderStroke(2.dp, Color(0xFFf1faee))
)
){ snappedDateTime ->
// println(snappedDateTime)
println(snappedDateTime)
}
}
}
Expand Down

0 comments on commit 4a75e8d

Please sign in to comment.