diff --git a/dart/README.md b/dart/README.md
index c6c5220f33..53ee1fd0ef 100644
--- a/dart/README.md
+++ b/dart/README.md
@@ -5,13 +5,20 @@
-Sentry SDK for Dart and Flutter
+Sentry SDK for Dart
===========
| package | build | pub | likes | popularity | pub points |
| ------- | ------- | ------- | ------- | ------- | ------- |
| sentry | [](https://github.com/getsentry/sentry-dart/actions?query=workflow%3Asentry-dart) | [](https://pub.dev/packages/sentry) | [](https://pub.dev/packages/sentry/score) | [](https://pub.dev/packages/sentry/score) | [](https://pub.dev/packages/sentry/score)
+Pure Dart SDK used by any Dart application like AngularDart, CLI and server.
+
+#### Flutter
+
+For Flutter applications there's [`sentry_flutter`](https://pub.dev/packages/sentry_flutter) which builds on top of this package.
+That will give you native crash support (for Android and iOS), [release health](https://docs.sentry.io/product/releases/health/), offline caching and more.
+
#### Versions
Versions `^4.0.0` are `Prereleases` and are under improvements/testing.
@@ -54,10 +61,6 @@ void aMethodThatMightFail() {
}
```
-#### Flutter SDK Integration
-
-- Check out the [Flutter SDK](https://github.com/getsentry/sentry-dart/tree/main/flutter) with the Native integrations (Android/Apple).
-
#### Resources
* [](https://docs.sentry.io/platforms/flutter/)
diff --git a/dart/pubspec.yaml b/dart/pubspec.yaml
index 26dfae0182..171ca8c6cd 100644
--- a/dart/pubspec.yaml
+++ b/dart/pubspec.yaml
@@ -2,7 +2,7 @@ name: sentry
version: 4.0.0-alpha.3
description: >
A crash reporting library for Dart that sends crash reports to Sentry.io.
- This library supports Dart Native, and Flutter for mobile, web, and desktop.
+ This library supports Dart VM and Web. For Flutter consider sentry_flutter instead.
homepage: https://github.com/getsentry/sentry-dart
repository: https://github.com/getsentry/sentry-dart
diff --git a/flutter/README.md b/flutter/README.md
index 7645624f41..cf968180fb 100644
--- a/flutter/README.md
+++ b/flutter/README.md
@@ -5,20 +5,15 @@
-Sentry SDK for Flutter and its Native integrations (Android/Apple)
+Sentry SDK for Flutter
===========
-| package | build |
-| ------- | ------- |
-| sentry_flutter | [](https://github.com/getsentry/sentry-dart/actions?query=workflow%3Asentry-flutter) |
+| package | build | pub | likes | popularity | pub points |
+| ------- | ------- | ------- | ------- | ------- | ------- |
+| sentry_flutter | [](https://github.com/getsentry/sentry-dart/actions?query=workflow%3Asentry-flutter) | [](https://pub.dev/packages/sentry_flutter) | [](https://pub.dev/packages/sentry_flutter/score) | [](https://pub.dev/packages/sentry_flutter/score) | [](https://pub.dev/packages/sentry_flutter/score)
-#### Versions
-
-Versions `^4.0.0` are `Prereleases` and are under improvements/testing.
-
-Versions `^4.0.0` integrate our Native SDKs ([Android](https://github.com/getsentry/sentry-java) and [Apple](https://github.com/getsentry/sentry-cocoa)), so you are able to capture errors on Native code as well (Java/Kotlin/C/C++ for Android and Objective-C/Swift for Apple).
-
-The current stable version is the Dart SDK, [3.0.1](https://pub.dev/packages/sentry).
+This package includes support to native crashes through Sentry's native SDKs: ([Android](https://github.com/getsentry/sentry-java) and [iOS](https://github.com/getsentry/sentry-cocoa)).
+It will capture errors in the native layer, including (Java/Kotlin/C/C++ for Android and Objective-C/Swift for iOS).
#### Usage