File tree Expand file tree Collapse file tree 1 file changed +3
-0
lines changed
compose/snippets/src/main/java/com/example/compose/snippets/components Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -144,6 +144,7 @@ fun DialExample(
144144 is24Hour = true ,
145145 )
146146
147+ // For information on how to implement a time picker dialog, see the "Dialogs for time pickers" guide.
147148 TimePickerDialog (
148149 onDismiss = { onDismiss() },
149150 onConfirm = { onConfirm(timePickerState) }
@@ -170,6 +171,7 @@ fun InputExample(
170171 is24Hour = true ,
171172 )
172173
174+ // For information on how to implement a time picker dialog, see the "Dialogs for time pickers" guide.
173175 TimePickerDialog (
174176 onDismiss = { onDismiss() },
175177 onConfirm = { onConfirm(timePickerState) }
@@ -207,6 +209,7 @@ fun AdvancedTimePickerExample(
207209 Icons .Filled .AccessTime
208210 }
209211
212+ // For information on how to implement a time picker dialog, see the "Dialogs for time pickers" guide.
210213 AdvancedTimePickerDialog (
211214 onDismiss = { onDismiss() },
212215 onConfirm = { onConfirm(timePickerState) },
You can’t perform that action at this time.
0 commit comments