Ignore user interaction events on iOS

This commit is contained in:
vishnukvmd 2024-02-24 16:23:25 +05:30
parent 511b2239e3
commit 52f4d2f634

View file

@ -41,6 +41,9 @@ class MachineLearningController {
}
void onUserInteraction() {
if (Platform.isIOS) {
return;
}
if (!_isUserInteracting) {
_logger.info("User is interacting with the app");
_isUserInteracting = true;