July 30, 2026 — The unofficial Laracon US Day 3. Get your ticket to The Vibes

System


Overview#

The System API provides access to basic system functions like flashlight control and platform detection.

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