> ## Documentation Index
> Fetch the complete documentation index at: https://moengage.com/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Framework Dependency

> Install the MoEngage Flutter SDK by adding moengage_flutter to your pubspec.yaml file.

Flutter is Google’s UI toolkit for building natively compiled applications for iOS and Android from a single codebase.

![Download](https://img.shields.io/pub/v/moengage_flutter.svg)

# Plugin Installation

To add MoEngage's Flutter SDK to your application, edit your ***pubspec.yaml*** to add  ***moengage\_flutter*** as a dependency.

<CodeGroup>
  ```yaml pubspec.yaml theme={null}
  dependencies:
  	moengage_flutter: $lastestVersion
  ```
</CodeGroup>

***\$latestVersion*** refers to the latest version of the plugin.

Post including the dependency run the following command in terminal to install the dependency.

<CodeGroup>
  ```yaml pubspec.yaml theme={null}
  flutter pub get
  ```
</CodeGroup>

<Info>
  A working Sample App can be found [here](https://github.com/moengage/Flutter-SDK).
</Info>

After installing the plugin, use the following platform-specific configuration.

* [Android](/developer-guide/flutter-sdk/sdk-integration/sdk-installation/android)
* [iOS](/developer-guide/flutter-sdk/sdk-integration/sdk-installation/ios)
* [Web](/developer-guide/flutter-sdk/sdk-integration/sdk-initialization/web-sdk-initialization)
