GaspardMerten / date_range_picker

Date Range Picker is a user-friendly and simple package for Flutter that allows users to select a date range. It's designed to evolve over time, and its components are built to be reusable.
MIT License
12 stars 31 forks source link

Allow customization of quick ranges background color #16

Closed mauriziopinotti closed 8 months ago

mauriziopinotti commented 9 months ago

Add option to change the background color of the side panel holding quick ranges.

      DateRangePickerWidget(
        // ...
        theme: const CalendarTheme(
          // ...
          quickDateRangeBackgroundColor: Color(0xFFDAEDF7),
          selectedQuickDateRangeColor: Colors.blue,
        ),
      );

image

GaspardMerten commented 8 months ago

Thanks for the PR :)