Coder Social home page Coder Social logo

Comments (5)

mrdev023 avatar mrdev023 commented on July 30, 2024

The same bug is encountered also in day view.

Step to reproduce:

  1. Show day view
  2. Click on April 2, 2022
  3. Click on March 31, 2022
  4. Swipe to the April 1, 2022
  5. Click on April 2, 2022
  6. Swipe to the April 1, 2022
  7. Now, component does not display view of April 1, 2022

from flutter_calendar_view.

manueltag avatar manueltag commented on July 30, 2024

Hi, I think the problem in day view is in getDayDifference function. This is an example:

void main() {
  DateTime epochDate = DateTime(1970);
  print(getDayDifference(epochDate, DateTime(2022, 4, 15))); // 19096
  print(getDayDifference(epochDate, DateTime(2022, 4, 15, 1))); // 19097
}

int getDayDifference(DateTime date1, DateTime date2) => date1.difference(date2).inDays.abs();

The function is used in initState of the day_view.dart component:

_totalDays = _maxDate.getDayDifference(_minDate) + 1;
_currentIndex = _currentDate.getDayDifference(_minDate);

And when you jump between the days.

When initializing _initialDay without widget.initialDay, the value is DateTime.now() (based on current locale).

I think all the calculations to get the difference of the days have to be done in UTC format.

from flutter_calendar_view.

Mind-Reaper avatar Mind-Reaper commented on July 30, 2024

I am stuck with this. Has a fixed version been released?

from flutter_calendar_view.

PRBaraiya avatar PRBaraiya commented on July 30, 2024

Hello guys, Is this issue still reproducible in latest release?

from flutter_calendar_view.

ParthBaraiya avatar ParthBaraiya commented on July 30, 2024

I'm considering this as fixed as there are no response. Please reopen this issue if this issue is still there.

from flutter_calendar_view.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.