Skip to content

Commit

Permalink
refactor: updated manual scroll linking
Browse files Browse the repository at this point in the history
  • Loading branch information
squidrye committed Oct 10, 2023
1 parent e93618a commit 0c208c8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -363,7 +363,7 @@ class _HomeBodyState extends State<HomeBody> {

_timer?.cancel();

_timer = Timer(const Duration(milliseconds: 20), () {
_timer = Timer(const Duration(milliseconds: 300), () {
absorbTapsNotifier.value = true;
_timer?.cancel();
});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ class _FlowyPaneState extends State<FlowyPane> {

verticalController.animateTo(
outerScrollExtent,
duration: const Duration(milliseconds: 300),
duration: const Duration(milliseconds: 10),
curve: Curves.easeInOut,
);
}
Expand Down

0 comments on commit 0c208c8

Please sign in to comment.