Closed aumb closed 3 years ago
Resolve issue #134
The issue was that the selectQuality function was called inside the build method.
selectQuality
The ScrollController in home.dart has a listener which executes
ScrollController
home.dart
setState(() => _offset = _controller.offset)
This caused the selectQuality to be called every time the user scrolls on the screen
Thank you very much for taking the time to fix this issue, it has bothered my a lot over the last few months, you fixed it right!
No problem glad i could help! 😄
Resolve issue #134
The issue was that the
selectQuality
function was called inside the build method.The
ScrollController
inhome.dart
has a listener which executesThis caused the
selectQuality
to be called every time the user scrolls on the screen