Muhammed Basil E

Results 9 comments of Muhammed Basil E

void removeSelectedAccount(SelectedAccount value, double walletBalance) { try { print("removeSelectedAccount"); _selectdAccounts .removeWhere((element) => element.accountName == value.accountName); print("removeSelectedAccount"); settotalAmountCollected(walletBalance); } catch (e) { toast("Error: $e"); } } void settotalAmountCollected(double walletBalance) { try...

Widget build(BuildContext context) { return MultiProvider( providers: [ ChangeNotifierProvider(create: (_) => DataProvider()), ChangeNotifierProvider(create: (_) => AnimationProvider()), ChangeNotifierProvider(create: (_) => BusinessRegistrationProvider()), ChangeNotifierProvider(create: (_) => WalletProvider()), ChangeNotifierProvider(create: (_) => BankProvider()), ChangeNotifierProvider(create: (_)...

@rrousselGit is there any mistake in this code

@rrousselGit I found the issue let me explain im working in a mobile application which used to transfer money there are two screens one for entering amount 2nd one for...

> EscPosEncode does this works,which converter are you using

I too have almost same situation in my notification bloc i have 4 events and when ever NotificationsFilter event is added to the bloc i want to cancel all pending...

> Thanks a lot to @masewo for the solution!!! > > The below forks of this package have the `back button interceptor`. And works as expected. > > If you...