-
Notifications
You must be signed in to change notification settings - Fork 217
Open
Description
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;
});
},
),
),
),
Metadata
Metadata
Assignees
Labels
No labels

