🔨
Installation
Learn how to integrate our system with Flutter.
You can easily use echo3D as a backend for your Flutter project by integrating the echo3D Flutter Plugin.
You can skip these steps and start building now with our open-source Flutter + echo3D (no AR capabilities) or Flutter + Unity + echo3D (includes AR capabilities) example projects.
Add the echo3D plugin as a dependency into your project's
pubspec.yaml
file:dev_dependencies:
echo3d_package: "^0.0.1+2"
After setting up the configuration file, run the following command:
flutter pub get
Add the package as an import in our Dart code:
import 'package:echo3d_package/echoar_package.dart';
Initialize your Flutter echo3D object by adding your API key:
Echo3D(apiKey: "<YOUR-API-KEY>");
That's it! 🎉
Last modified 1mo ago