Git Product home page Git Product logo

Comments (11)

Skyost avatar Skyost commented on July 18, 2024 1

You are right @valentinkatic ! I don't really know why I've set hour + 1, I think it was when I was using another system... Nevermind, it seems to be fixed anyway 😉

from flutterweekview.

Skyost avatar Skyost commented on July 18, 2024

Seems to be a timezone problem. What is your OS timezone ? And your device timezone ?

from flutterweekview.

zephyo avatar zephyo commented on July 18, 2024

from flutterweekview.

Skyost avatar Skyost commented on July 18, 2024

Well, it should. I will investigate.

from flutterweekview.

Skyost avatar Skyost commented on July 18, 2024

@zephyo If you try to execute the following code :

DateTime date = DateTime.now();
print('Hour : ${date.hour}, Minute : ${date.minute}.');

Are you getting the expected output ?

from flutterweekview.

FernandaMayumi avatar FernandaMayumi commented on July 18, 2024

I'm also having the same problem, I ran the test and it was an hour earlier than the indicator.

from flutterweekview.

Skyost avatar Skyost commented on July 18, 2024

@FernandaMayumi

  1. What are your OS timezone and your device timezone ?
  2. Is it possible for you to run the code snippet just above please ?

from flutterweekview.

FernandaMayumi avatar FernandaMayumi commented on July 18, 2024

@Skyost
Brazil, GMT-03:00 Brasilia Standard Time

I ran the code above and gave my device an extra hour

from flutterweekview.

Skyost avatar Skyost commented on July 18, 2024

@FernandaMayumi Hmm yes, so does the plugin. I'm gonna investigate and post my results in this issue.

from flutterweekview.

Skyost avatar Skyost commented on July 18, 2024

Okay, according to various sources it seems to be a problem with Android emulators only. Btw as you can see by running the code snippet above, it's more of a bug from Flutter than from this plugin.

Please don't hesitate reopening if it happens on a physical device, I will try to find a fix that will also work on this plugin.

from flutterweekview.

valentinkatic avatar valentinkatic commented on July 18, 2024

I'm also having this problem and I'm testing app on web platform.
My timezone is UTC+1 (Europe/Zagreb).
print("now: ${DateTime.now()}");
returns
now: 2020-02-13 11:32:20.025
and my system time is also 11:32, but red indicator is on 12:32.

I believe the problem is with adding +1 to hours when determining top offset in createCurrentTimeRule method.

Widget createCurrentTimeRule() {
    DateTime now = DateTime.now();
    return Positioned(
      top: calculateTopOffset(now.hour + 1, now.minute),
      left: widget.hoursColumnWidth,
      right: 0,
      child: Container(
        height: 1,
        color: widget.currentTimeRuleColor,
      ),
    );
  }

Screenshot 2020-02-13 at 11 32 01

from flutterweekview.

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.