-
Notifications
You must be signed in to change notification settings - Fork 48
Description
I am getting this error,
Error: 'DateUtils' is imported from both 'package:calendarro/date_utils.dart' and 'package:flutter/src/material/date.dart'.
startDate = DateUtils.getFirstDayOfCurrentMonth();
Error: 'DateUtils' is imported from both 'package:calendarro/date_utils.dart' and 'package:flutter/src/material/date.dart'.
endDate = DateUtils.toMidnight(endDate);
Error: 'DateUtils' is imported from both 'package:calendarro/date_utils.dart' and 'package:flutter/src/material/date.dart'.
return DateUtils.isSameDay(selectedSingleDate, date);
Error: 'DateUtils' is imported from both 'package:calendarro/date_utils.dart' and 'package:flutter/src/material/date.dart'.
var lastDayOfMonth = DateUtils.getLastDayOfMonth(widget.startDate);
Error: 'DateUtils' is imported from both 'package:calendarro/date_utils.dart' and 'package:flutter/src/material/date.dart'.
bool isToday = DateUtils.isToday(date);
Error: 'DateUtils' is imported from both 'package:calendarro/date_utils.dart' and 'package:flutter/src/material/date.dart'.
bool isToday = DateUtils.isToday(date);
Can anyone help me with this problem?