build method

  1. @override
Widget build(
  1. BuildContext context
)

Describes the part of the user interface represented by this widget.

The framework calls this method when this widget is inserted into the tree in a given BuildContext and when the dependencies of this widget change (e.g., an InheritedWidget referenced by this widget changes). This method can potentially be called in every frame and should not have any side effects beyond building a widget.

The framework replaces the subtree below this widget with the widget returned by this method, either by updating the existing subtree or by removing the subtree and inflating a new subtree, depending on whether the widget returned by this method can update the root of the existing subtree, as determined by calling Widget.canUpdate.

Typically implementations return a newly created constellation of widgets that are configured with information from this widget's constructor and from the given BuildContext.

The given BuildContext contains information about the location in the tree at which this widget is being built. For example, the context provides the set of inherited widgets for this location in the tree. A given widget might be built with multiple different BuildContext arguments over time if the widget is moved around the tree or if the widget is inserted into the tree in multiple places at once.

The implementation of this method must only depend on:

  • the fields of the widget, which themselves must not change over time, and
  • any ambient state obtained from the context using BuildContext.dependOnInheritedWidgetOfExactType.

If a widget's build method is to depend on anything else, use a StatefulWidget instead.

See also:

  • StatelessWidget, which contains the discussion on performance considerations.

Implementation

@override
Widget build(BuildContext context) {
  return Column(
    mainAxisAlignment: MainAxisAlignment.center,
    children: List.generate(
      (menuButtons.length ~/ 2) + (menuButtons.length % 2),
      (index) => Row(
        children: menuButtons
            .sublist(
              index * 2,
              (index != menuButtons.length ~/ 2) ? index * 2 + 2 : null,
            )
            .map(
              (element) => Expanded(
                child: Padding(
                  padding: EdgeInsets.only(
                    left: (element != menuButtons.elementAt(index * 2) &&
                            (index != menuButtons.length ~/ 2))
                        ? utils.SizeConfig.blockSizeDiagonal * 0.625
                        : 0.0,
                    right: (element == menuButtons.elementAt(index * 2) &&
                            (index != menuButtons.length ~/ 2))
                        ? utils.SizeConfig.blockSizeDiagonal * 0.625
                        : 0.0,
                    bottom: (index != menuButtons.length ~/ 2)
                        ? utils.SizeConfig.blockSizeDiagonal * 1.25
                        : 0.0,
                  ),
                  child: MenuButton(
                    homeMenuItem: element,
                    menuButtonsRows: (menuButtons.length.isOdd)
                        ? (menuButtons.length / 2) + 0.5
                        : menuButtons.length / 2,
                    onTap: () async {
                      switch (element.menuOption) {
                        case MenuOption.sell:
                          Transitions(
                            context: context,
                            child: const SellPage(),
                          );
                          break;
                        case MenuOption.todaysSales:
                          Transitions(
                            context: context,
                            child: const TodaysTransactionsPage(),
                          );

                          break;
                        case MenuOption.record:
                          Transitions(
                            context: context,
                            child: const RecordPage(),
                          );
                          break;
                        case MenuOption.bankAccounts:
                          Transitions(
                            context: context,
                            child: const BankAccountsPage(),
                          );
                          break;
                        case MenuOption.closeSales:
                          // await showDialog(
                          //   context: context,
                          //   builder: (context) => ConfirmationDialog(
                          //     title: '¿Estás seguro?',
                          //     iconPath: 'assets/icons/menu/lock.svg',
                          //     text: const <String>[
                          //       '¿Estás seguro de cerrar el lote actual?',
                          //       'Tus fondos se liquidarán, por lo que no podrás anular transacciones anteriores',
                          //       'Esta acción no se puede revertir',
                          //     ],
                          //     rightButtonAction: () =>
                          //         initSettlement(context),
                          //   ),
                          // );
                          await showDialog(
                            context: context,
                            builder: (context) => const RequirementsDialog(
                              title: 'Cierre del día',
                              requisites: <String>[
                                'Contacto cierra los lotes de sus transacciones automáticamente todos los días a las 23:30 hrs.',
                                'El dinero de sus recaudaciones se liquida al día siguiente hábil de realizada la recaudación en la cuenta bancaria que usted registró',
                                'Para cualquier duda o consulta comuníquese con soporte:'
                              ],
                              extra: SupportAccess(
                                subject: AppMailMessages.settlementInfo,
                              ),
                            ),
                          );
                          break;
                      }
                    },
                  ),
                ),
              ),
            )
            .toList(),
      ),
    ),
  );
}