skip to Main Content

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