Skip to content

Commit

Permalink
Fixed issue where feed FAB can be triggered on other pages (#1085)
Browse files Browse the repository at this point in the history
  • Loading branch information
hjiangsu authored Jan 25, 2024
1 parent 6b0150a commit cbb3334
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/thunder/pages/thunder_page.dart
Original file line number Diff line number Diff line change
Expand Up @@ -479,7 +479,7 @@ class _ThunderState extends State<Thunder> {
opacity: selectedPageIndex == 0 ? 1.0 : 0.0,
duration: const Duration(milliseconds: 150),
curve: Curves.easeIn,
child: FeedFAB(scaffoldMessengerKey: scaffoldMessengerKey),
child: IgnorePointer(ignoring: selectedPageIndex != 0, child: FeedFAB(scaffoldMessengerKey: scaffoldMessengerKey)),
)
: null,
floatingActionButtonAnimator: FloatingActionButtonAnimator.scaling,
Expand Down

0 comments on commit cbb3334

Please sign in to comment.