✨ Real Working Demo Apps

Experience it Yourself

Download and test 3 real-world demo apps.
See how native apps work with just web technologies.

πŸ₯

Healthcare Tracker

A demo including core health features like Step Tracking, GPS Location, and Widget Updates.

πŸ“ GPS πŸ‘£ Steps πŸ“Š Widget πŸ’Ύ Storage
πŸ“₯ Download APK/IPA
// Web App Code Example
const bridge = new FlutterBridge();

// Get Steps
const steps = await bridge.getSteps();

// Track GPS Location
const location = await bridge.getLocation();

// Update Home Widget
await bridge.updateWidget({
  steps: steps,
  distance: calculateDistance(steps)
});
πŸ“±

Social App

Demonstrates all native features needed for SNS apps: Camera, Location Tags, Push Notifications.

πŸ“Έ Camera πŸ”” Notify πŸ“ Location πŸ’¬ Share
πŸ“₯ Download APK/IPA
// Web App Code Example
const bridge = new FlutterBridge();

// Take Photo
const photo = await bridge.takePhoto();

// Location Tag
const location = await bridge.getLocation();

// Push Notification
await bridge.showNotification({
  title: 'New Like',
  body: 'Someone liked your post'
});
🚚

Delivery Tracker

Implements core delivery app features: Real-time Tracking, Background Execution, Distance Calculation.

πŸ—ΊοΈ Tracking πŸ”„ Background πŸ“ Distance πŸ”” Notify
πŸ“₯ Download APK/IPA
// Web App Code Example
const bridge = new FlutterBridge();

// Start Location Tracking
bridge.startLocationTracking();

// Enable Background Execution
await bridge.enableBackground();

// Calculate Distance
const distance = await bridge.calculateDistance(
  startLocation,
  currentLocation
);

Like what you see?

If you want to apply this to your project after testing,
please contact us anytime. We are here to help.

πŸ’¬ GitHub Issues βœ‰οΈ Email Support

⚑ Fast Response | 🀝 Free Consultation | πŸ“š Tech Support

FAQ

πŸ’° Is there a cost?

Currently in Beta Test Phase, it is free. Even after official launch, it will be provided at a low cost. We are preparing affordable pricing for individual developers and startups.

πŸ€” Do I need to know Flutter?

No, you don't! It connects your existing web app to work as a hybrid app, supporting native features (Camera, Location, etc.) with just JavaScript.

πŸ“± What features can I use?

GPS Location, Camera, Push Notifications, Local Storage, Home Widgets, Background Execution, etc. 20+ Native Features are available via simple JavaScript API.

πŸš€ Can I use it for commercial services?

Yes! Although in beta, it works stably and is already used in several projects. However, we recommend sufficient testing for production environments.