System
NativePHP for Desktop and Mobile have reached v1!
On this page
#Overview
The System API provides access to basic system functions like flashlight control.
Copied!
use Native\Mobile\Facades\System;
#Methods
#flashlight()
Toggles the device flashlight (camera flash LED) on and off.
Returns: void
Copied!
System::flashlight(); // Toggle flashlight state
#isIos()
Determines if the current device is running iOS.
Returns: true
if iOS, false
otherwise
#isAndroid()
Determines if the current device is running Android.
Returns: true
if Android, false
otherwise