Jonas Uekötter
Jonas Uekötter
I'm not sure what you're asking. There's no need to do this, but it's a welcomed change. As of now, if you want it, you have to do it yourself.
As far as I remember it’s needed for the bottom sheet. But if you can get rid of the navigator, that would be awesome. I‘ve tried a couple of times...
Closed via https://github.com/ueman/feedback/pull/239
Yes, it seems like it's now possible 🥳
I think you can also check for the isolate name being 'main'. That way you don't need a dependency on Flutter. The token is also a recent addition, which is...
I think the `debugName` falls back to method name it was launched with, not 100% sure though. So there's a good chance the `main` check actually works. But yeah, it's...
`dart:mirrors` isn't supported on Flutter, since it's basically reflection, which Flutter doesn't support. Unfortunately, I'm not aware of anything else.
In the meantime, you're able to write your own adapter, which makes use of fetch instead of xhr. If you happen to do so, we would appreciate a PR. If...
Theoretically, you could wrap the http `fetch_client` in the [ConversionLayerAdapter](https://github.com/cfug/dio/blob/main/plugins/native_dio_adapter/lib/src/conversion_layer_adapter.dart) to enable it easily. The ConversionLayerAdapter could maybe its own package to allow an easy interopt between http and dio
@meetdhanani17 I'm not sure, I understand what you're trying to say. Right now, you can't use the ConversionLayerAdapter outside of the `native_dio_adapter`, but it could be moved into its own...