Skip to main content

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:
dart pub add presentum
Or manually add it to your pubspec.yaml:
pubspec.yaml
dependencies:
  flutter:
    sdk: flutter
  presentum: <version>
Then run:
flutter pub get
That’s it! Presentum is now installed and ready to use.

Optional dependencies

Depending on your use case, you might want to add:
For simple persistent storage:
dart pub add shared_preferences

Next steps