You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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?
The text was updated successfully, but these errors were encountered:
import 'package:calendarro/date_utils.dart' as dateUtils;
This error seems to me that you are trying to use dateutils from material and from calendarro in the same file with the same
reference name (DateUtils).
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?
The text was updated successfully, but these errors were encountered: