Skip to main content

Android Intent Plus Overview

This plugin allows Flutter apps to launch arbitrary intents when the platform is Android. If the plugin is invoked on iOS, it will crash your app. In checked mode, we assert that the platform should be Android.

Get started

1. Add it to your project

pubspec.yaml
dependencies:
flutter:
sdk: flutter
android_intent_plus: "^0.0.1"

2. Download dependency

$ flutter pub get

3. Rebuild the app

$ flutter run

Next steps

Read the usage page to see examples of how to use the package.