Flutter SDK Installation

Install the Solvof SDK in your Flutter application.

Overview

The Solvof Flutter SDK is built entirely in Dart and supports iOS, Android, Web, macOS, Windows, and Linux. It leverages SQLite (via sqflite) on mobile/desktop and IndexedDB on web for robust offline queueing.

1. Add Dependency

Add the following to your pubspec.yaml file:

yaml
1dependencies:2  flutter:3    sdk: flutter4  emp_analytics: ^1.0.0

2. Fetch Packages

Run the flutter pub get command in your terminal.

bash
1flutter pub get

Next Steps

With the package installed, you are ready to configure it in your main.dart file. See the Initialization guide.