Native Features Matrix

Explore all 20+ native features available in Flutter Bridge

Feature Description API Method Android iOS Status Example
Device Info Get device model, OS version, etc. getDeviceInfo() βœ… βœ… Ready Test App
App State Check environment (dev/prod), localhost status getAppState() βœ… βœ… Ready Test App
Vibrate Trigger device vibration vibrate(duration) βœ… βœ… Ready Test App
Toast Show native toast message showToast(msg) βœ… βœ… Ready Vanilla JS
Dialog Show native alert/confirm dialog showDialog(title, msg) βœ… βœ… Ready Test App
Widget Update Update home screen widget data updateWidget(data) βœ… βœ… Ready Healthcare App
Get Location Get current GPS coordinates getLocation() βœ… βœ… Ready Delivery App
Watch Location Stream real-time location updates watchLocation(cb) βœ… βœ… Ready Delivery App
Take Photo Capture image from camera takePhoto() βœ… βœ… Ready Social App
Pick Image Select image from gallery pickImage() βœ… βœ… Ready Test App
Pick Video Select video from gallery pickVideo() βœ… βœ… Ready Test App
Save Data Save persistent data to native storage saveData(key, val) βœ… βœ… Ready Healthcare App
Load Data Load data from native storage loadData(key) βœ… βœ… Ready Healthcare App
Delete Data Remove data from native storage deleteData(key) βœ… βœ… Ready Test App
Show Notification Display local notification showNotification() βœ… βœ… Ready Push Guide
Open URL Open URL in external browser openUrl(url) βœ… βœ… Ready Test App
Go Back Navigate back in WebView history goBack() βœ… βœ… Ready Test App