We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
WeekView( key: _weekViewKey, controller: _eventController, pageViewPhysics: const ClampingScrollPhysics(), startHour: _computeStartHour(), endHour: _computeEndHour(), )
When the widget rebuilds with a new startHour and endHour, the widget stay the same.
I looked into the code and did the following changes in src/week_view/week_view.dart :
461 + _startHour = widget.startHour; 462 + _endHour = widget.endHour; 463 _calculateHeights();
And it works like a charm !
The text was updated successfully, but these errors were encountered:
fix: Fixes issue #410: Changing startHour and endHour doesn't update …
1d7b4eb
…WeekView
fix: Fixes issue #410: Changing startHour and endHour doesn't upd…
startHour
endHour
f17ab4e
…ate WeekView
fix: Fixes issue #410: Fixed startHour and endHour rebuild issue …
f5f6777
…in WeekView
8988784
f5e27ff
45c34ad
shubham-jitiya-simform
Successfully merging a pull request may close this issue.
When the widget rebuilds with a new startHour and endHour, the widget stay the same.
I looked into the code and did the following changes in src/week_view/week_view.dart :
And it works like a charm !
The text was updated successfully, but these errors were encountered: