skip to Main Content

Undefined name 'mounted' in Flutter

I get this error: Undefined name 'mounted' in the future fetchoffers widget. Can anyone help me with this problem? I want to use this to make in app purchases work in my flutter app. import 'package:flutter/material.dart'; import 'package:AnyKnower/chatgpt.dart'; import 'package:AnyKnower/privacypolicy.dart';…

VIEW QUESTION

why my page route is not working properly? – Flutter

InkWell( onTap: () { Get.put<DetailsPaymentHistoryController>( DetailsPaymentHistoryController( paymentHistoryApi: PaymentHistoryApi(), invoiceId: payment.invoiceId!.toString())); Get.toNamed(Routes.detailsHistoryPayment); }, child: Row( mainAxisAlignment: MainAxisAlignment.end, children: [ Text( 'More Details', style: getSemiBoldStyle( color: Colormanager.primary, fontSize: FontSize.s15), ), const SizedBox( width: AppSize.s4, ), Icon( Icons.read_more, color: Colormanager.darkPrimary, ) ], ),…

VIEW QUESTION
Back To Top
Search