Flutter
This guide describes how to add and use Apphud SDK to your Flutter app.
Installation
Run the following command:
flutter pub add apphud
This will add a line like this to your package's pubspec.yaml (and run an implicit flutter pub get
):
dependencies:
apphud: ^VERSION
where VERSION is latest SDK version from our releases page.
Now in your Dart code, add:
import 'package:apphud/apphud.dart';
Please check the guide at pub.dev for more details.
Updated 10 months ago