У меня есть список кнопок. Функция onPressed запускает функцию datePicker, после выбора даты текст кнопки должен измениться на выбранную дату. Каждая дата сохраняется в списке значений DateTime, «дат», который я использую позже. Список дат и listView - это динамические c, их длина зависит от числа, выбранного пользователем. Я инициализировал buttonText и установил его значение в initState на date. Проблема в том, что после выбора даты на каждой кнопке отображается одна и та же дата.
Future<DateTime> _pickDate() async {
DateTime chosen = DateTime.now();
DateTime date = await showDatePicker(
context: context,
initialDate: pickedDate,
firstDate: DateTime(DateTime.now().year - 100),
lastDate: DateTime.now());
if (date != null) {
setState(() {
chosen = date;
print(chosen);
dates.add(chosen);
print(dates);
});
}
return chosen;
}
Widget _dateList() {
return Container(
margin: EdgeInsets.all(10),
width: MediaQuery.of(context).size.width * 0.8,
height: MediaQuery.of(context).size.height * 0.1,
decoration: BoxDecoration(
//border: Border.all(
// color: Colors.red
// )
),
child: ListView.builder(
scrollDirection: Axis.horizontal,
shrinkWrap: true,
itemCount:
pregController.text == '' ? 0 : int.parse(pregController.text),
itemBuilder: (BuildContext context, int index) {
DateTime birth = DateTime.now();
return Container(
padding: EdgeInsets.all(5),
width: MediaQuery.of(context).size.width * 0.3,
child: RaisedButton(
color: Colors
.primaries[Random().nextInt(Colors.primaries.length)],
key: Key(index.toString()),
child: Text(
buttonText,
textAlign: TextAlign.center,
style: GoogleFonts.lato(
textStyle: TextStyle(
color: Colors.white,
)),
),
onPressed: () async {
birth = await _pickDate();
setState(() {
buttonText =
'${dates[index].day}/${dates[index].month}/${dates[index].year}';
});
}),
);
}),
);
}