Flutter 3.7 changed the return value of Scrollable.of(context) from nullable to non-nullable. Therefore, we should use Scrollable.maybeOf(context) instead, since there's not always a scrollable in the context.
@letsar Please let me know if there's anything missing.
Fixes #402
Flutter 3.7 changed the return value of
Scrollable.of(context)
from nullable to non-nullable. Therefore, we should useScrollable.maybeOf(context)
instead, since there's not always a scrollable in the context.@letsar Please let me know if there's anything missing.