我可以 Select 银行应用程序中的多个帐户并同时向他们支付不同的金额吗?

Can i Select Multiple Accounts in a Banking app and pay them different amounts at the same time in flutter?

import 'package:flutter/material.dart';
import 'package:flutter_typeahead/flutter_typeahead.dart';
import 'package:keyboard_dismisser/keyboard_dismisser.dart';
import 'package:money_formatter/money_formatter.dart';
import 'package:shukela_app/api/banking_app_api.dart';
import 'package:shukela_app/screens/stokvel_detail.dart';
import 'package:shukela_app/screens/stokvels.dart';
import 'package:shukela_app/utils/constants.dart';
import 'package:shukela_app/utils/global_variables.dart';
import 'package:sizer/sizer.dart';
import 'package:shukela_app/model/bankingapp_model.dart';

import '../utils/user_preferences.dart';

class PayMultipleStokvelScreen extends StatefulWidget {
  const PayMultipleStokvelScreen({Key? key}) : super(key: key);

  @override
  State<PayMultipleStokvelScreen> createState() =>
      _PayMultipleStokvelScreenState();
}

TextEditingController txtSearch = TextEditingController();
TextEditingController txtAmount = TextEditingController();

class _PayMultipleStokvelScreenState extends State<PayMultipleStokvelScreen> {
  String? selectedType;
  bool hasText = false;

  String buttonText = "PAY NOW";
  bool isLoading = false;

  Widget? showHideIcon() {
    if (hasText) {
      return IconButton(
        icon: const Icon(
          Icons.clear,
          color: AppColors.primaryBlue,
        ),
        onPressed: () {
          txtSearch.clear();
          setState(() {
            hasText = false;
          });
        },
      );
    } else {
      return null;
    }
  }

//   void _showMultiSelectDialog(BuildContext context) async {
//   await showDialog(
//     context: context,
//     builder: (ctx) {
//       return  MultiSelectDialog(
//         items: _animals.map((e) => MultiSelectItem(e, e)).toList(),
//         initialValue: _selectedAnimals,
//         onConfirm: (values) {...},
//       );
//     },
//   );
// }

  double? balance;

  final _formKey = GlobalKey<FormState>();

  var selectedValue;

  List<StokvelDetail> selectedStokvel = [];

  @override
  void initState() {
    super.initState();

    balance = double.parse(UserPreferences.getBalance() ?? '');
  }

  mf() {
    MoneyFormatter mf = MoneyFormatter(amount: balance!);
    return mf;
  }

  StokvelListState currentState = StokvelListState.showAllListState;

  @override
  Widget build(BuildContext context) => KeyboardDismisser(
        gestures: const [GestureType.onTap],
        child: SafeArea(
          child: Scaffold(
            backgroundColor: AppColors.secondaryColor,
            appBar: AppBar(
              backgroundColor: AppColors.secondaryColor,
              elevation: 0,
              title: const Text('Pay Multiple Stokvel',
                  style: screenTitleTextStyle),
              leading: IconButton(
                icon: const Icon(
                  Icons.arrow_back_ios,
                  color: AppColors.primaryBlue,
                ),
                onPressed: () => Navigator.pop(context),
              ),
            ),
            body: Form(
              key: _formKey,
              child: Column(
                children: [
                  SizedBox(height: 5.h),
                  Container(
                    height: 6.h,
                    width: 98.w,
                    padding: const EdgeInsets.fromLTRB(10, 0, 10, 0),
                    child: TypeAheadFormField<Stokvel?>(
                      debounceDuration: const Duration(milliseconds: 500),
                      hideSuggestionsOnKeyboardHide: false,
                      suggestionsBoxDecoration: const SuggestionsBoxDecoration(
                          constraints: BoxConstraints(maxHeight: 450),
                          color: AppColors.secondaryColor,
                          borderRadius: BorderRadius.all(Radius.circular(10))),
                      textFieldConfiguration: TextFieldConfiguration(
                        style: const TextStyle(
                          color: AppColors.primaryBlue,
                          fontSize: 15.0,
                          fontWeight: FontWeight.bold,
                        ),
                        controller: txtSearch,
                        onChanged: (value) {
                          setState(() {
                            hasText = true;
                          });
                        },
                        decoration: InputDecoration(
                          prefixIcon: const Icon(
                            Icons.search,
                            color: AppColors.primaryBlue,
                          ),
                          suffixIcon: showHideIcon(),
                          hintText: 'Search Stokvel',
                          border: const OutlineInputBorder(
                            borderSide:
                                BorderSide(color: AppColors.primaryBlue),
                          ),
                          enabledBorder: OutlineInputBorder(
                            borderRadius: BorderRadius.circular(4.0),
                            borderSide:
                                const BorderSide(color: AppColors.primaryBlue),
                          ),
                        ),
                      ),
                      validator: (val) {
                        if (val!.isEmpty) {
                          return "Please select stokvel";
                        }
                        return null;
                      },
                      suggestionsCallback: BankingAppApi.getStokvelSuggestions,
                      itemBuilder: (context, Stokvel? suggestion) {
                        final stokvel = suggestion!;

                        //
                        return ListTile(
                          trailing: SizedBox(
                            height: 20.0,
                            width: 20.0,
                            child: Container(
                              color: AppColors.primaryBlue,
                            ),
                          ),
                          title: Text(
                            stokvel.stokvelName!,
                            style: const TextStyle(
                              fontFamily: Fonts.primaryFont,
                              fontWeight: FontWeight.bold,
                              color: AppColors.primaryBlue,
                            ),
                          ),
                          subtitle: Text(
                            stokvel.stokvelType!,
                            style: const TextStyle(
                                fontFamily: Fonts.primaryFont,
                                fontWeight: FontWeight.bold,
                                color: AppColors.primaryBlue),
                          ),
                        );
                      },
                      noItemsFoundBuilder: (context) => const SizedBox(
                        height: 60,
                        child: Center(
                          child: Text(
                            'No Stokvel Found.',
                            style: TextStyle(fontSize: 20),
                          ),
                        ),
                      ),
                      onSuggestionSelected: (Stokvel? suggestion) {
                        final stokvel = suggestion!;
                        setState(() {
                          txtSearch.text = stokvel.stokvelName!;
                          hasText = true;
                        });
                        stokvelID = stokvel.stokvelID;
                        memberID = stokvel.memberID;
                      },
                    ),
                  ),

                  SizedBox(
                    height: 4.h,
                  ),
                  SizedBox(height: 3.h),
                  Container(
                    height: 6.h,
                    width: 98.w,
                    padding: const EdgeInsets.fromLTRB(10, 0, 10, 0),
                    child: TextFormField(
                      controller: txtAmount,
                      decoration: const InputDecoration(
                        labelStyle: TextStyle(
                          color: AppColors.primaryBlue,
                          fontSize: 20.0,
                          fontWeight: FontWeight.bold,
                        ),
                        suffixText: "ZAR",
                        border: OutlineInputBorder(
                            borderSide:
                                BorderSide(color: AppColors.primaryBlue)),
                        focusedBorder: OutlineInputBorder(
                          borderRadius: BorderRadius.all(Radius.circular(4)),
                          borderSide: BorderSide(
                              width: 1, color: AppColors.primaryBlue),
                        ),
                        enabledBorder: OutlineInputBorder(
                          borderRadius: BorderRadius.all(Radius.circular(4)),
                          borderSide: BorderSide(
                              width: 1, color: AppColors.primaryBlue),
                        ),
                        labelText: 'Amount',
                        contentPadding:
                            EdgeInsets.only(left: 20, right: 15, bottom: 8),
                      ),
                      keyboardType: TextInputType.number,
                      style: const TextStyle(
                          fontSize: 20.0,
                          fontFamily: Fonts.primaryFont,
                          color: AppColors.primaryBlue),
                      validator: (val) {
                        if (val!.isEmpty) {
                          return "Please enter amount";
                        }
                        return null;
                      },
                    ),
                  ),
                  SizedBox(height: 3.h),
                  Container(
                    height: 6.h,
                    width: 98.w,
                    padding: const EdgeInsets.fromLTRB(10, 0, 10, 0),
                    child: TextField(
                      readOnly: true,
                      style: const TextStyle(
                          fontSize: 18.0, fontWeight: FontWeight.bold),
                      textAlign: TextAlign.center,
                      decoration: InputDecoration(
                        hintText: "Wallet Balance : R " + mf().output.nonSymbol,
                        border: const OutlineInputBorder(
                            borderSide:
                                BorderSide(color: AppColors.primaryBlue),
                            borderRadius: BorderRadius.horizontal()),
                        focusedBorder: const OutlineInputBorder(
                          borderRadius: BorderRadius.all(Radius.circular(4)),
                          borderSide: BorderSide(
                              width: 1, color: AppColors.primaryBlue),
                        ),
                        enabledBorder: const OutlineInputBorder(
                          borderRadius: BorderRadius.all(Radius.circular(4)),
                          borderSide: BorderSide(
                              width: 1, color: AppColors.primaryBlue),
                        ),
                      ),
                    ),
                  ),
                  SizedBox(height: 3.h),
                  Container(
                    height: 50,
                    width: 400,
                    padding: const EdgeInsets.fromLTRB(10, 0, 10, 0),
                    child: ElevatedButton(
                      style: ButtonStyle(
                          backgroundColor:
                              MaterialStateProperty.all(Colors.white)),
                      child: isLoading
                          ? Row(
                              mainAxisAlignment: MainAxisAlignment.center,
                              children: const [
                                CircularProgressIndicator(
                                    color: AppColors.secondaryColor),
                                SizedBox(width: 24),
                                Text(
                                  "Submitting payment...",
                                  style: TextStyle(
                                      color: AppColors.secondaryColor),
                                )
                              ],
                            )
                          : Text(
                              buttonText,
                              style: const TextStyle(
                                  fontFamily: Fonts.primaryFont,
                                  fontWeight: FontWeight.bold,
                                  color: AppColors.primaryBlue),
                            ),
                      onPressed: () {
                        if (_formKey.currentState!.validate()) {
                          if (double.parse(txtAmount.text) <= balance!) {
                            setState(
                              () {
                                isLoading = true;
                              },
                            );
                            stokvelTransact.amount =
                                double.parse(txtAmount.text);
                            stokvelTransact.memberID = memberID;
                            stokvelTransact.stokvelID = stokvelID;
                            stokvelTransact.transactionTypeID = 1;
                            api
                                .stokvelDeposit(stokvelTransact,
                                    "StokvelTransaction/StokvelTransact")
                                .then(
                                  (value) => setState(
                                    () {
                                      Future.delayed(
                                          const Duration(seconds: 3));
                                      isLoading = false;
                                      if (value == "Success") {
                                        ScaffoldMessenger.of(context)
                                            .showSnackBar(snackBar(
                                                content:
                                                    'Payment made succesfully',
                                                duration: 5));
                                      } else {
                                        ScaffoldMessenger.of(context)
                                            .showSnackBar(snackBar(
                                                content:
                                                    'We have encountered technical problems, Try again later',
                                                duration: 5));
                                      }
                                    },
                                  ),
                                )
                                .catchError(
                              (err) {
                                setState(() {
                                  isLoading = false;
                                });
                                ScaffoldMessenger.of(context).showSnackBar(
                                    snackBar(
                                        content: err.toString(), duration: 7));
                              },
                            );
                          } else {
                            ScaffoldMessenger.of(context).showSnackBar(snackBar(
                                content: "Insuficient funds!", duration: 7));
                          }
                        }
                      },
                    ),
                  ),
                ],
              ),
            ),
          ),
        ),
      );
}

The above code is for the single page that I want to achieve this

This is what I want to achieve or any suggestions are accepted, I want to mark the Group of Stokvels I want to pay and pay them different accounts I don't know if it's possible please I'm new in flutter it a project I have to get it done as soon as possible this is the source code for my whole payment page, for now, I'm able to pay a single Stokvel Group but I want to select multiple

我强烈建议从格式化当前代码开始 - 它难以阅读且难以维护。

简单的想法是:

  • 使用您创建的 List<StokvelDetail> selectedStokvel = []; 每次在 SearchBarselect Stokvel

    中添加 Stokvel
  • 添加 Map<int,double> amounts = {}; 以跟踪您要发送给每个 Stokvel 的金额

  • 基于selectedStokvel构建多个'amount window'小部件

  • 提交前验证walletBalance >= amounts.values.reduce((a,b)=> a + b)

  • 每个 selectedStokvel 调用 api.stokvelDeposit(stokvelTransact, ...

我主要关注将此代码拆分为多个 Widget 类,有很多学校,但我喜欢在单个文件中最多包含大约 150 行代码。

据我所见,您的文件可以很容易地分为:

Column(
    children: [
        SizedBox(),
        SearchBar(),
        SizedBox(),
        AmountInput(), --> StokvelAmountInput() for each selectedStokvel
        SizedBox(),
        WalletBalance(),
        SizedBox(),
        SubmitButton(),
    ]),
    ```