maRci002

Results 124 comments of maRci002

> As you can see in https://pub.dev/packages/web/changelog (and it was explained in already 2 issues) > > ``` > Require Dart ^3.4.0. > ``` > > We are not going...

> @maRci002 - Have you tried the latest dev version? > > ```shell > dart pub global activate flutterfire_cli 1.0.1-dev.4 > ``` @russellwheatley neither `--ios-out ios/firebase_config/dev` neither `--ios-out ios/firebase_config/dev/GoogleService-Info.plist` worked...

> firebase.json tracks your FlutterFire configuration It's nice to see that it can store configuration for each flavor > I cannot reproduce this bug if I'm honest. Did you get...

> Just to be clear - as [@mortenthansen](https://github.com/mortenthansen) has pointed out, we only generate apple stuff if you're running on macOS. I've just noticed that [@maRci002](https://github.com/maRci002) is running on windows...

I am using the default schema validator provided by Fastify (AJV). As you can see in both cases, `additionalProperties` are not allowed based on my schema definition; however, only `nullable`...

I can add `passthrough`, and it will work, but it might leak sensitive information. However, this isn't required when using `optional`. In the case of `optional`, `fast-json-stringify` automatically removes the...

> Now I don't know how to write json schema with `zod` I have updated the description to remove the `Zod` dependency. > I don't agree, nullable means that something...

When `"type": ["string", "null"]` is used instead of `anyOf`, it works well for nullable cases. I've submitted an issue to the `zod-to-json-schema` repository to support this feature. StefanTerdell/zod-to-json-schema#142 Closing in...

> I have a question about why `XFile` is needed here instead of simply File ? Because you would have to import [dart:io](https://api.flutter.dev/flutter/dart-io/dart-io-library.html) which won't work on web. The `image_picker`...

On the web, when you want to play a `Blob`, it is treated as a network URL. Therefore, you have to use `VideoPlayerController.network` instead of `VideoPlayerController.file` this is done automatically...