Manish

Results 7 comments of Manish

In my case this was related to the open_file in Flutter. This package is using REQUEST_INSTALL_PACKAGES permission in the manifest. I fixed by using (open_file_safe) :https://pub.dev/packages/open_file_safe or you can also...

Declare this function on your common functions file and you can call this functions for closing dialogs with Getx : `closeDialog() { Navigator.of(Get.overlayContext!, rootNavigator: true).pop(); }`

Wrap your webivew widget with AbsorbPointer() widget. ``` AbsorbPointer( child: WebViewPlus()) ```

try this : Navigator.of(Get.overlayContext!, rootNavigator: true).pop();