Skip to content

Commit

Permalink
chore: Update fade animation duration to 280 milliseconds
Browse files Browse the repository at this point in the history
  • Loading branch information
natsuk4ze committed Jun 2, 2024
1 parent 017fe96 commit 09b2fe2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/common_widgets/fade.dart
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ class Fade extends HookWidget {
.addPostFrameCallback((_) => shouldShow.value = true);

return AnimatedOpacity(
duration: const Duration(milliseconds: 400),
duration: const Duration(milliseconds: 280),
opacity: shouldShow.value ? 1 : 0,
child: child,
);
Expand Down

0 comments on commit 09b2fe2

Please sign in to comment.