Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ class AppSettingGestureDetector extends StatefulWidget {

/// Child widget for [AppSettingGestureDetector].
final Widget child;

/// The navigation Function after the clicks
final Function onTapNavigation;

Expand Down Expand Up @@ -47,7 +47,7 @@ class _AppSettingGestureDetectorState extends State<AppSettingGestureDetector> {
if (_tapCount == maxTapCount) {
_tapCount = 0;

widget.onTapNavigation();
widget.onTapNavigation(context);
} else {
if (_tapCount == 1) {
Future<int>.delayed(
Expand Down