# SDK — Flutter (/docs/sdk/flutter)



<Callout type="warn">
  **Status: not yet published.** There is no official Flutter package on
  pub.dev. `flutter pub add layers_sdk` or `layers` will either 404 or
  resolve to an unrelated third-party package — not a Layers-authored SDK.
</Callout>

## What exists today [#what-exists-today]

There is no first-party Flutter SDK. Workarounds:

* **Platform channel to native code** — once native iOS/Android SDKs
  ship, a Flutter plugin will typically follow. In the meantime you can
  POST directly to `https://in.layers.com/events` from Dart using the
  raw [HTTP payload](/docs/sdk/reverse-proxy#endpoint-reference).
* **Run a JS SDK inside a WebView** — workable for hybrid screens but
  not a first-class integration.

## Roadmap [#roadmap]

A Flutter package is on the roadmap but not yet on pub.dev. When it
ships it will be published as `layers_sdk` (or similar) with iOS and
Android platform bindings.

## If you need Flutter now [#if-you-need-flutter-now]

* POST events directly to the ingest endpoint from Dart using
  `package:http`. See [Reverse proxy](/docs/sdk/reverse-proxy) for the
  request shape.
* Use `@layers/node` from any server-side Dart bridge you control.
