diff --git a/README.md b/README.md
index cfd9b67..7c6d151 100644
--- a/README.md
+++ b/README.md
@@ -45,6 +45,44 @@ WheelDateTimePicker(
+
+
+
+
+ +```kotlin +GroupedWheelDateTimePicker( + startDateTime = LocalDateTime.of( + 2023, 6, 22, 5, 30 + ), + minDateTime = LocalDateTime.of( + 2023, 4, 20, 5, 30 + ), + maxDateTime = LocalDateTime.of( + 2023, 10, 20, 5, 30 + ), + todayLabel = "Today", + dateFormat = DateTimeFormatter.ofPattern("EEE d MMM yy"), + timeFormat = TimeFormat.HOUR_24, + size = DpSize(300.dp, 200.dp), + rowCount = 5, + textStyle = MaterialTheme.typography.bodyLarge, + textColor = Color(0xFFFFFFFF), + selectorProperties = WheelPickerDefaults.selectorProperties( + enabled = true, + shape = RoundedCornerShape(5.dp), + color = Color(0xFF036AB3).copy(alpha = 0.2f), + border = BorderStroke(1.dp, Color(0xFF036AB3)) + ) +) { println(it) } +``` + | +
+
+ |