brunodmn
brunodmn
Hi, I've just tried to implement [flutter_admob_app_open](https://pub.dev/packages/flutter_admob_app_open) package, but admob_flutter won't build and app won't compile after I added flutter_admob_app_open to pubspec. ``` FAILURE: Build failed with an exception. *...
I'd like this feature too. I am migrating my project to a new optimized database (old one is a mess), trying to read information from 'project-old' and write on 'project-new'....
> Check comment [#360 (comment)](https://github.com/fluttercommunity/flutter_workmanager/issues/360#issuecomment-1043171712) You can do the same workaround with path provider, till flutter and dart team fixes the actual issue 98591 in flutter repo. Add in your...
@sirmamedical, if you try with `getTemporaryDirectory()` instead of `getApplicationDocumentsDirectory()`, you get same results? Did you finish and started application instead of hot reload? Did you run `flutter clean` /` flutter...
Hi @sirmamedical, if works with temporary directory might be something with permission to access files on device, which you could try to ask permission on first run, before initializing the...
> I have the same issue when trying to work with hive any workaround. and @brunodmn did you get any solution I have been working on this for two days...
> Hey, @brunodmn as a workaround for now you can set: `scrollPhysics: const BouncingScrollPhysics(),` in your `CarouselOptions`. it did work. Thank you!
> @ApiQuery({ name: 'id', required: false, type: Number }) This seems not to work with [nestjs swagger plugin ](https://docs.nestjs.com/openapi/cli-plugin). Snippet of my controller: ``` @ApiQuery({ enum: AsaasPaymentStatusQuery, required: false })...
> @brunodmn I'm not sure, but isn't the 'name' property missing for the 'ApiQuery'? Since 'ApiQuery' itself is used to attach metadata to a function to associate it with its...
I have similar problem using getx..even though last page is reached, fetchPage() is called more than once sometimes (on route init). This is my controler ```dart class ContractsController extends GetxController...