lqml/examples/wear-os-gps/cpp/qt.mm
2024-05-23 10:28:06 +02:00

9 lines
186 B
Text

#include "qt.h"
#import <UIKit/UIKit.h>
QVariant QT::keepScreenOn(const QVariant& on) {
[UIApplication sharedApplication].idleTimerDisabled = on.toBool() ? YES : NO;
return on;
}