add listener to root of the app also when (Platform.isAndroid || kDebugMode) is false

This commit is contained in:
ashilkn 2024-01-26 10:49:39 +05:30
parent c2c858448a
commit 775fc68f16

View file

@ -123,7 +123,13 @@ class _EnteAppState extends State<EnteApp> with WidgetsBindingObserver {
),
);
} else {
return MaterialApp(
return Listener(
onPointerDown: (event) {
SemanticSearchService.instance.pauseIndexing();
debugPrint("user is interacting with the app");
_resetTimer();
},
child: MaterialApp(
title: "ente",
themeMode: ThemeMode.system,
theme: lightThemeData,
@ -138,6 +144,7 @@ class _EnteAppState extends State<EnteApp> with WidgetsBindingObserver {
...AppLocalizations.localizationsDelegates,
S.delegate,
],
),
);
}
}