werner-scholtz / kalender

An elegantly crafted Flutter calendar UI package.
MIT License
107 stars 29 forks source link

Focus on current time #76

Open hami-sh opened 5 months ago

hami-sh commented 5 months ago

Hi there! Would it be possible in the day view for the view to load focussed on the current time (ie the red bar?)

Thanks!

werner-scholtz commented 5 months ago

Hi, no it is not the best you can do at the moment is to add something like this to your widgets init state.

  void initState() {
    super.initState();

    WidgetsBinding.instance.addPostFrameCallback((_) {
      controller.animateToDateTime(DateTime.now());
    });
  }