đ YOLO Flutter - Ultralytics Official Plugin
Ultralytics YOLO Flutter is the official plugin for running YOLO models in Flutter apps on iOS and Android. It supports detection, segmentation, classification, pose, and OBB with two simple entry points:
YOLOfor single-image inferenceYOLOViewfor real-time camera inference
The main goal is simple integration: use an official model ID, or drop in your own exported model and let the plugin resolve task metadata for you.
⨠Why This Plugin
- Official Ultralytics plugin for Flutter
- One Dart API for Android and iOS
- Metadata-first model loading with official model download and caching
- Real-time camera inference and single-image inference
- Production-ready controls for thresholds, GPU use, and streaming
- YOLO26 and YOLO11 model families supported
| Feature | Android | iOS | Details |
|---|---|---|---|
| Object Detection | â | â | Bounding boxes, labels, and confidence scores |
| Image Classification | â | â | Top class predictions and scores |
| Instance Segmentation | â | â | Instance masks with boxes and classes |
| Pose Estimation | â | â | Keypoints with boxes and confidence scores |
| Oriented Bounding Box (OBB) Detection | â | â | Rotated boxes and polygon corners |
| Real-Time Camera Inference | â | â | YOLOView for live camera workflows |
| Single-Image Inference | â | â | YOLO for image bytes |
| Official Models | â | â | Discovery, download, and caching for packaged model IDs |
| Custom Models | â | â | TFLite on Android, Core ML on iOS, metadata-first tasks |
⥠Quick Start
Install the package:
Package: https://pub.dev/packages/ultralytics_yolo
dependencies:
ultralytics_yolo: ^0.3.4
flutter pub get
Start with the default official model:
import 'package:ultralytics_yolo/ultralytics_yolo.dart';
final modelId = YOLO.defaultOfficialModel() ?? 'yolo26n';
YOLOView(
modelPath: modelId,
onResult: (results) {
for (final r in results) {
debugPrint('${r.className}: ${r.confidence}');
}
},
)
For single-image inference:
final yolo = YOLO(modelPath: 'yolo26n');
await yolo.loadModel();
final results = await yolo.predict(imageBytes);
âļī¸ Example App | đ Installation Guide | ⥠Quick Start Guide
đĻ Model Loading
The plugin supports three model flows.
1. Official model IDs
Use the default official model or a specific official ID and let the plugin handle download and caching:
final yolo = YOLO(modelPath: YOLO.defaultOfficialModel() ?? 'yolo26n');
Call YOLO.officialModels() to see which official IDs are available on the
current platform.
2. Your own exported model
Pass your own exported YOLO model as a local path or Flutter asset path:
final yolo = YOLO(modelPath: 'assets/models/my-finetuned-model.tflite');
If the exported model includes metadata, the plugin infers task automatically. If metadata is missing, pass task explicitly.
final yolo = YOLO(
modelPath: 'assets/models/my-finetuned-model.tflite',
task: YOLOTask.detect,
);
3. Remote model URL
Pass an http or https URL and the plugin will download it into app storage before loading it.
đ§ Official vs. Custom
| Use case | Recommended path |
|---|---|
| Fastest first integration | Official model ID like yolo26n |
| You trained or exported your own model | Custom asset or local file |
| You ship different models per customer or environment | Remote URL |
You need the plugin to infer task automatically |
Any export with metadata |
| You have an older or stripped export without metadata | Custom model plus explicit task |
For official models, start with YOLO.defaultOfficialModel() or
YOLO.officialModels(). For custom models, start with the exported file you
actually plan to ship.
đĨ Drop Your Own Model Into an App
For custom models, keep the app-side setup minimal.
- Android native assets: place
.tflitefiles inandroid/app/src/main/assets - Flutter assets on Android: place
.tflitefiles inassets/models/ - iOS bundle: drag
.mlpackageor.mlmodelintoios/Runner.xcworkspace - Flutter assets on iOS: place
.mlpackage.zipfiles inassets/models/
Then point modelPath at that file or asset path.
iOS export note
Detection models exported to Core ML must use nms=True:
from ultralytics import YOLO
# Square [640, 640] works best when one model must run in both portrait and landscape.
# Ultralytics imgsz order is [height, width]; use [640, 384] for portrait-only or [384, 640] for landscape-only.
YOLO("yolo26n.pt").export(format="coreml", nms=True, imgsz=[640, 640])
Other tasks can use the default export settings, with the same square-orientation guidance for imgsz.
đ¯ Choose The Right API
Use YOLO when you already have image bytes and want one prediction at a time:
final yolo = YOLO(modelPath: 'yolo26n');
await yolo.loadModel();
final results = await yolo.predict(imageBytes);
Use YOLOView when you want live camera inference:
final controller = YOLOViewController();
YOLOView(
modelPath: 'yolo26n',
controller: controller,
onResult: (results) {},
)
await controller.switchModel('assets/models/custom.tflite', YOLOTask.detect);
đ§Š Recommended Patterns
| App type | Model loading pattern |
|---|---|
| Live camera app | YOLOView(modelPath: 'yolo26n') |
| Photo picker or gallery workflow | YOLO(modelPath: 'yolo26n') |
| App with your own bundled model | YOLO(modelPath: 'assets/models/custom.tflite') |
| Cross-platform Core ML + TFLite app | Use platform-appropriate exported assets and let metadata drive task |
| App that changes models at runtime | YOLOViewController.switchModel(...) |
đ Documentation
| Guide | Description |
|---|---|
| Installation Guide | Requirements and platform setup |
| Quick Start | Minimal setup for the first working app |
| Model Guide | Official models, custom models, export flow |
| Usage Guide | Common app patterns and examples |
| API Reference | Full API surface |
| Performance Guide | Tuning and performance controls |
| Troubleshooting | Common problems and fixes |
đ¤ Community & Support
- đŦ Questions? Discord | Forums | GitHub Issues
- đ Found a bug? Report it here
- đĄ Feature request? Let us know
đĄ Contribute
Ultralytics thrives on community collaboration, and we deeply value your contributions! Whether it's bug fixes, feature enhancements, or documentation improvements, your involvement is crucial. Please review our Contributing Guide for detailed insights on how to participate. We also encourage you to share your feedback through our Survey. A heartfelt thank you đ goes out to all our contributors!
đ License
Ultralytics offers two licensing options to accommodate diverse needs:
- AGPL-3.0 License: Ideal for students, researchers, and enthusiasts passionate about open-source collaboration. This OSI-approved license promotes knowledge sharing and open contribution. See the LICENSE file for details.
- Enterprise License: Designed for commercial applications, this license permits seamless integration of Ultralytics software and AI models into commercial products and services, bypassing the open-source requirements of AGPL-3.0. For commercial use cases, please inquire about an Enterprise License.
đ Related Resources
Native iOS Development
If you're interested in using YOLO models directly in iOS applications with Swift (without Flutter), check out our dedicated iOS repository:
đ Ultralytics YOLO iOS App - A native iOS application for real-time detection, segmentation, classification, pose estimation, and OBB detection with Ultralytics YOLO models.
This repository provides:
- Pure Swift implementation for iOS
- Direct Core ML integration
- Native iOS UI components
- Example code for various YOLO tasks
- Optimized for iOS performance
đŽ Contact
Encountering issues or have feature requests related to Ultralytics YOLO? Please report them via GitHub Issues. For broader discussions, questions, and community support, join our Discord server!
Libraries
- config/channel_config
- core/yolo_inference
- core/yolo_model_manager
- core/yolo_model_resolver
- models/yolo_exceptions
- models/yolo_result
- models/yolo_task
- platform/yolo_platform_impl
- platform/yolo_platform_interface
- ultralytics_yolo
- utils/error_handler
- utils/logger
- utils/map_converter
- widgets/yolo_controller
- widgets/yolo_controls
- widgets/yolo_overlay
- yolo
- yolo_instance_manager
- yolo_performance_metrics
- yolo_streaming_config
- yolo_view







