Prerequisites
Before installing Presentum, ensure you have the Flutter SDK installed. Visit flutter.dev for installation instructions.
Add Presentum
Add Presentum to your Flutter project using the Dart CLI:
Or manually add it to your pubspec.yaml:
dependencies:
flutter:
sdk: flutter
presentum: <version>
Then run:
That’s it! Presentum is now installed and ready to use.
Optional dependencies
Depending on your use case, you might want to add:
SharedPreferences
Firebase Remote Config
Analytics
For simple persistent storage:dart pub add shared_preferences
For remote campaign management:dart pub add firebase_remote_config
For tracking events:dart pub add firebase_analytics
# or
dart pub add mixpanel_flutter
Next steps