DatePickerTimelineFlutter icon indicating copy to clipboard operation
DatePickerTimelineFlutter copied to clipboard

I add a ScrollBar in flutter but it doesn't work

Open Trung15010802 opened this issue 2 years ago • 0 comments

My code:

SizedBox(
          height: 100,
          width: 500,
          child: Scrollbar(
            controller: _dateScrollController,
            child: DatePicker(
              DateTime(2023, 10, 20),
              initialSelectedDate: DateTime.now(),
              selectionColor: Colors.black,
              locale: 'vi-VN',
              selectedTextColor: Colors.white,
              onDateChange: (date) {
                // New date selected
                setState(() {
                  // _selectedValue = date;
                });
              },
            ),
          ),
        ),

Result: image

Error when scroll using scroll Bar: image

Trung15010802 avatar Oct 26 '23 06:10 Trung15010802