You may encounter this issue when you try to run for Flutter web application. Normal iOS and Android platforms are not recognized on Flutter typical mobile app. If you want to run them both on iOS, Android and Flutter Web, you need to change the package. In general, your error looks like below To get…
Month: October 2023
Flutter Web App Correct Way to Run from Mobile App
Here i will cover the steps, those are needed to convert a Flutter mobile to browser app. By this, I mean how to run a mobile app in the browser. In general pretty much the below command could do the tricks. The above command does the trick. But sometimes it is not that simple. For…
GetX Controller make sure release Controller
If you use GetX and your controller instantiated with Get.put() or Get.put() not with fenix:true or permanent:true, That controller instance should be auto disposed. The default behavior is that you if you instantiate your controller Get.put(), it must be auto disposed. Learn the advanced usage of GetX here But there might be situations or bug…
Mention Somebody Flutter Group Chat
Mentioning somebody in a group chat of flutter application seems to be a tremendous task. So we have invested a lot of time built very first Flutter group chat where you can mention somebody. For group chat we have used Firebase api. Let’s took at the below image for mention somebody in the chat Check…
[Get] the improper use of a GetX has been detected
GetX and Obx() class may get you the below error [Get] the improper use of a GetX has been detected.You should only use GetX or Obx for the specific widget that will be updated.If you are seeing this error, you probably did not insert any observable variables into GetX/Obxor insert them outside the scope that…