Don't check for widgets on iOS

This commit is contained in:
vishnukvmd
2024-04-24 10:54:21 +05:30
parent 21baf023cc
commit 88e34683ee

View File

@@ -64,6 +64,9 @@ class _EnteAppState extends State<EnteApp> with WidgetsBindingObserver {
}
void _checkForWidgetLaunch() {
if (Platform.isIOS) {
return;
}
hw.HomeWidget.initiallyLaunchedFromHomeWidget().then(
(uri) => HomeWidgetService.instance.onLaunchFromWidget(uri, context),
);