Skip to content

Commit 542da4d

Browse files
committed
Reduced time duration to zero to open the detail view from home widget
1 parent e082845 commit 542da4d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/app/modules/home/controllers/home_controller.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -606,7 +606,7 @@ class HomeController extends GetxController {
606606
if (myUri.queryParameters["uuid"] != null) {
607607
uuid.value = myUri.queryParameters["uuid"] as String;
608608
isHomeWidgetTaskTapped.value = true;
609-
Future.delayed(const Duration(seconds: 2), () {
609+
Future.delayed(Duration.zero, () {
610610
Get.toNamed(Routes.DETAIL_ROUTE, arguments: ["uuid", uuid.value]);
611611
});
612612
}

0 commit comments

Comments
 (0)