skip to Main Content

how to solve flutter formstate method?

I have this class in flutter abstract class ForgetPasswordController extends GetxController { checkemail(); } class ForgetPasswordControllerImp extends ForgetPasswordController { CheckEmailData checkEmailData = CheckEmailData(Get.find()) ; GlobalKey<FormState> formstate = GlobalKey<FormState>(); StatusRequest? statusRequest = StatusRequest.none ; late TextEditingController email; @override checkemail() async {…

VIEW QUESTION

Clear TextField inside ListView Flutter

How onTap clear TextField in below example? Note TextField is positioned inside trailing in ListView trailing: FittedBox( fit: BoxFit.fill, child: SizedBox( height:40, width:100, child: TextField( controller: TextEditingController(text: _docData[index].quantity.toString()), decoration: InputDecoration( suffix: InkWell( onTap: () { setState(() { }); }, child:…

VIEW QUESTION

Flutter not able to build release version of application

flutter run works but flutter run --release or flutter run --release --profile returns the error below: ===== CRASH ===== si_signo=Segmentation fault: 11(11), si_code=1, si_addr=0x0 version=2.18.6 (stable) (Tue Dec 13 21:15:14 2022 +0000) on "macos_simarm64" pid=14192, thread=-1, isolate_group=isolate(0x7f910c011200), isolate=(nil)(0x0) isolate_instructions=0, vm_instructions=0…

VIEW QUESTION
Back To Top
Search