# Installation

<Admonition type="note">

This SDK is the client half of your integration. Feed groups, ranking, permissions, push setup and bulk imports are configured from your backend with a server-side SDK or the REST API, and the token your app connects with has to be signed there too. See the [server-side overview](https://getstream.io/activity-feeds/docs/flutter/server-side/) for what belongs there, starting with [tokens and authentication](https://getstream.io/activity-feeds/docs/flutter/tokens-and-authentication/).

</Admonition>

The Flutter SDK for Stream Feeds is distributed through [pub.dev](https://pub.dev).

Currently we only have a package for the low level Feeds client: [stream_feeds](https://pub.dev/packages/stream_feeds).
Releases and changes are published on the [GitHub releases page](https://github.com/GetStream/stream-feeds-flutter/releases).

### Adding the SDK to your project

To add the Flutter SDK, you can add the latest dependencies for the SDK to your `pubspec.yaml` file:

```yaml
dependencies:
stream_feeds: ^latest
```

Additionally, you can also run the `flutter pub add` command in the terminal to do this:

```shell
flutter pub add stream_feeds
```

This command will automatically install the latest versions of the Stream SDK package from pub.dev to the dependencies section of your `pubspec.yaml`.


---

This page was last updated at 2026-08-07T20:37:29.937Z.

For the most recent version of this documentation, visit [https://getstream.io/activity-feeds/docs/flutter/installation/](https://getstream.io/activity-feeds/docs/flutter/installation/).