我想改变showDateRangePicker
视图的颜色。(请参考以下代码)。但不幸的是,它不能正常工作。我在代码中遗漏了什么?
我使用package:flutter/src/material/date_picker.dart.
和flutter 3.13.3
代码如下,
var pickedDate = await showDateRangePicker(
context: context,
initialDateRange: DateTimeRange(
start: widget.selectedDate!, end: widget.selectedDate!),
firstDate: DateTime.now().subtract(Duration(days: 0)),
lastDate: DateTime(2100),
builder: (BuildContext context, Widget? child) {
return Theme(
data: ThemeData.light().copyWith(
colorScheme: ColorScheme.fromSwatch(
primarySwatch: Colors.teal,
accentColor: Colors.teal,
),
dialogBackgroundColor:Colors.white,
),
child: child!,
);
},
);
1条答案
按热度按时间4xrmg8kj1#
我是这样解决这些问题的:
我希望这对你有帮助。