You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+57-50Lines changed: 57 additions & 50 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -59,68 +59,75 @@ final date = await showRangePickerDialog(
59
59
);
60
60
```
61
61
62
-
Customize the appearance of the picker by providing optional parameters to the `showDatePickerDialog` or
62
+
Customize the appearance of the picker by providing the `theme` parameter to the `showDatePickerDialog` or
63
63
`showRangePickerDialog` function.
64
64
65
+
Use `cellsPadding` on `DaysPickerTheme`, `MonthsPickerTheme`, or `YearsPickerTheme` to control inner padding around each grid cell (around the decorated content). Defaults are `EdgeInsets.zero` for days and `EdgeInsets.symmetric(horizontal: 8, vertical: 16)` for months and years.
66
+
67
+
Set `isEnabled` to `false` on `DatePickerPlusTheme` for a **view-only** picker: selection, header navigation,
68
+
and month swiping are disabled, and accessibility reports controls as disabled.
0 commit comments