If you encounter this error two ways to solve this issue Try to run the commands below After that delete the app and run This should have help you to solve the error. 2. The other way, you can try is to change the webview_flutter version.In this case, you still have to do the things…
Month: February 2022
Create A List of Objects | Flutter | Getx
Let’s see how to create a list of objects that response from the UI. First we will create a model and we will call it task_model.dart In the above model, you can change your field anyway, you want. But you should know that, that’s how you create a basic model class. Since we have the…
Getx or BLoc for Flutter?
Getx is much easier and beginners friendly. With Getx you just need to know about some basic concept like GetBuilder, Obx, obs, Update() and some routing functions. And that’s all. With BLoc you must understand what is stream, sink, Provider and things like that. But these things are hard for beginners to grasp and it…