skip to Main Content

Flutter – Improper use of Getx has been detected

I use Getx, and more specifically the Obx widget. Here's a code snippet where I use Obx: class CustumTextFormField extends StatelessWidget { const CustumTextFormField({ super.key, required this.textFieldLable, required this.isPassword, required this.custumController, }); final String textFieldLable; final bool isPassword; final CustumTextFormFieldController…

VIEW QUESTION
Back To Top
Search