diff --git a/lib/actions/actions.dart b/lib/actions/actions.dart index 262d3df9..37f9ae4e 100644 --- a/lib/actions/actions.dart +++ b/lib/actions/actions.dart @@ -401,21 +401,23 @@ Future checkLocals({ if (locals != null && locals.isEmpty) { await toggleApp(context, false); return false; - } else if (locals.where((local) => local['CLU_STATUS'] != 'A').isNotEmpty) { - await showModalBottomSheet( - isScrollControlled: true, - backgroundColor: Colors.transparent, - enableDrag: false, - isDismissible: false, - context: context, - builder: (context) => Padding( - padding: MediaQuery.viewInsetsOf(context), - child: const BottomArrowLinkedLocalsComponentWidget(), - ), - ); // Chamada oti + } else { + // else if (locals.where((local) => local['CLU_STATUS'] != 'A').isNotEmpty) { + // await showModalBottomSheet( + // isScrollControlled: true, + // backgroundColor: Colors.transparent, + // enableDrag: false, + // isDismissible: false, + // context: context, + // builder: (context) => Padding( + // padding: MediaQuery.viewInsetsOf(context), + // child: const BottomArrowLinkedLocalsComponentWidget(), + // ), + // ); + // } + await toggleApp(context, true); + return true; } - await toggleApp(context, true); - return true; } Future answersRequest(BuildContext context, String? ref, String? task,