Ignore user interaction events on iOS
This commit is contained in:
parent
511b2239e3
commit
52f4d2f634
1 changed files with 3 additions and 0 deletions
|
@ -41,6 +41,9 @@ class MachineLearningController {
|
|||
}
|
||||
|
||||
void onUserInteraction() {
|
||||
if (Platform.isIOS) {
|
||||
return;
|
||||
}
|
||||
if (!_isUserInteracting) {
|
||||
_logger.info("User is interacting with the app");
|
||||
_isUserInteracting = true;
|
||||
|
|
Loading…
Add table
Reference in a new issue