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
First of all, thank you for your amazing work. I love the calendar and it works like a breeze!
I have a small issue with the intl package, though. In your previous change, you had the constraint set to any to avoid conflicts:
[0.3.17+37] - 2024-03-06
Update the intl package to 'any' in order to avoid problems when using this package
However, in your current version, it is fixed to 0.19.0.
Is it possible to revert it to any, so it doesn't interfere with older Flutter versions?
Greetings Chris
The text was updated successfully, but these errors were encountered:
OK, I will try to find out, why I changed it back to an explicit version. I will change it back to any as soon as I come to the conclusion, that It is safe to do so.
I oppose setting the version of the intl- dependency to any. This is not a good idea, because then Flutter expects my package to by compatible with any available version of this package, even future releases. What I could do is to set a range for compatible versions of the intl-package. like intl: >=0.18.0 <0.20.0. How about that? Would that solve your problem?
Hi,
First of all, thank you for your amazing work. I love the calendar and it works like a breeze!
I have a small issue with the
intl
package, though. In your previous change, you had the constraint set toany
to avoid conflicts:[0.3.17+37] - 2024-03-06
Update the intl package to 'any' in order to avoid problems when using this package
However, in your current version, it is fixed to
0.19.0
.Is it possible to revert it to
any
, so it doesn't interfere with older Flutter versions?Greetings Chris
The text was updated successfully, but these errors were encountered: