Danilo Rêgo
Danilo Rêgo
I implemented the lib today and also couldn't see a way to properly test it, as we can't mock a static method. This is how I tested: Create a "middleware"...
I believe it should be better if the `cropImage` wasn't `static` though, so we could mock the `ImageCropper` itself. If there is a better way, I will be glad to...
> Same issue, always trackpad, M1 MacBook Air. Very hard to pin-point the reason or to replicate it on command, but it seems to happen on any application and specifically...
Good question! We can use another class to help with that: ```dart class User { final String id; final String name; final String? nickname; const User({ required this.id, required this.name,...
Another possible approach, changing only the nullable fields: ```dart class User { final String id; final String name; final String? nickname; const User({ required this.id, required this.name, this.nickname, }); User...
I believe that there are some limitation when publishing apps to the stores with such `id`. It also should be in the apps's privacy policy, clearing saying what is the...
As commented [in this docs](https://github.com/flutter-webrtc/flutter-webrtc#note-for-ios), you can add this line in your Podspec file. That worked for me: ``` post_install do |installer| installer.pods_project.targets.each do |target| flutter_additional_ios_build_settings(target) target.build_configurations.each do |config| #...
I have this same concern. As far as I know, it's based on extensions, which is similar to having helper functions returning Widgets and this is not recommended by the...
As this package seams to not be mantained anymore, I forked it and added null-safety support for using in my project. ``` screen: git: url: https://github.com/daniloapr/flutter_screen.git ref: master ``` Feel...
I also can't install on iOS, using an Mac M1, ` sqlite3_flutter_libs: ^0.5.8` . It works fine for Android. ``` Running Xcode build... Xcode build done. 3.7s Failed to build...