Mais Alheraki

Results 67 comments of Mais Alheraki

I run into the same issue in one of my apps, the workaround that fixed it was this: ```dart await InternetAddress.lookup('google.com'); await _remoteConfig.fetchAndActivate(); ``` Also, adding a delay as suggested...

I will provide a way to let you choose wether to go with default browser or WebView soon, thanks for reporting.

Are you on the latest version of VS? please check the [additional requirements](https://docs.flutter.dev/development/platform-integration/desktop#additional-windows-requirements) for developing windows apps with Flutter.

I believe this might be related to an issue I can reproduce now: ``` C:\Program Files\Microsoft Visual Studio\2022\Community\MSBuild\Microsoft\VC\v170\Microsoft.CppBuild.targets(378,5): error MSB3491: Could not write lines to file "x64\Debug\desktop_webview_auth_DEPENDENCIES_DOWNLOAD\desktop_.29304C0E.tlog\desktop_webview_auth_DEPENDENCIES_DOWNLOAD.lastbuildstate". Path: x64\Debug\desktop_webview_auth_DEPENDENCIES_DOWNLOAD\desktop_.29304C0E.tlog\desktop_webview_auth_DEPENDENCIES_DOWNLOAD.lastbuildstate exceeds...

The reason we didnโ€™t include Firestore or Realtime Database is that Core & Auth are still in preview. They both are essential to most other packages. Weโ€™re not sure how...

The work on RC is in-progress, but there's no plan, at least in the meantime, for Firestore or Database. This could change anytime in the near future.

> > 2. ๐Ÿ”ด `Analytics` > > I'm quite interested in the Analytics functionality. Out of curiosity, do you know of any API documentation? The only one I found was...

@cbenhagen oh no it's not abandoned! as you said, there is so much on our plate, but this project will definitely keep moving forward! For how can anyone help, we...

As @TimWhiting said, the JS SDK was my reference in auth, if you look at [the API layer in Auth](https://github.com/invertase/flutterfire_desktop/tree/main/packages/firebase_auth/firebase_auth_dart/lib/src/api) you can take inspiration. Additionally, we use the [generated Firebase...

I used to check the three SDKs for the same functionality (iOS, Android, and JS). There's a way each is implementing something following the practices for the language and framework,...