Creating a separate controller allows for better separation of concerns in your code. By having a dedicated controller class, you can encapsulate the logic related to handling specific functionalities or operations, such as form submissions or API calls. This helps in keeping your notifier classes focused on managing state while delegating the business logic to…
Month: April 2024
Error: The getter ‘physicalGeometry’ isn’t defined for the class ‘FlutterView’.
The above error caused by flutter_screen util package. It’s a version update problem. To resolve the error make sure you have the latest version of the plugin. Error: The getter ‘physicalGeometry’ isn’t defined for the class ‘FlutterView’. Let’s change the version to the latest one flutter_screenutil: ^5.9.0
Firebase UI Auth package error
Running firebase package AuthProvider get the below error And the below error Solution Forcing firebase auth to use a specific version, which is firebase_auth: 4.12.0, solved my problem for now. It seems like the version 4.13.0 introduces a conflict with AuthProvider. If you changing firebase_auth version did not work, then change the version of firebase_ui_auth,…