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

# Framework Dependency

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={"theme":{"light":"github-light","dark":"github-dark"}}
  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={"theme":{"light":"github-light","dark":"github-dark"}}
  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-installation/web)
