Manoel Aranda Neto

Results 1027 comments of Manoel Aranda Neto

Nope, we don't do anything, but I believe Flutter itself does something in case there's no `runZoneGuarded` at all, which is likely printing out to the console, we always forward...

A workaround, for now, would be to create a Flutter bridge and call a Native SDK via FFI, eg, [Rust SDK](https://github.com/PostHog/posthog-rs)

@CaptainDario unfortunately not yet, but please upvote for gathering interest. We'd need to write a pure Dart SDK (not depending on the Native SDKs such as Android and iOS for...

A quick workaround, for now, is to just call the [API directly](https://posthog.com/tutorials/api-capture-events) until we provide first-class support for Flutter Desktop.

> For anybody finding this, the current time can be set with `(DateTime.now().toUtc()).toIso8601String()`. Yes, the [docs](https://posthog.com/tutorials/api-capture-events#adding-properties-and-batching) mention the ISO8601 format.

macOS support has landed at least https://github.com/PostHog/posthog-flutter/releases/tag/4.0.0-beta.2

We'd also benefit from automatically generated API ref. https://pub.dev/documentation/posthog_flutter/latest/index.html

To capture events manually, you have to capture an event called `$autocapture` with the following properties: ```dart ElevatedButton( onPressed: () { Posthog() .capture(eventName: '\$autocapture', properties: { '\$event_type': 'touch', '\$touch_x': 100,...

> Do you think we can already use it in a Web environment via: [posthog.com/docs/session-replay/installation#add-to-your-website-and-product](https://posthog.com/docs/session-replay/installation#add-to-your-website-and-product) > > If we add this script can we already got session record in Web...

@Kiruel can you share your JS configuration? @daibhin would be interested in checking this out.