build method

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

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

The framework calls this method in a number of different situations. For example:

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, the given BuildContext, and the internal state of this State object.

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. The BuildContext argument is always the same as the context property of this State object and will remain the same for the lifetime of this object. The BuildContext argument is provided redundantly here so that this method matches the signature for a WidgetBuilder.

Design discussion

Why is the build method on State, and not StatefulWidget?

Putting a Widget build(BuildContext context) method on State rather than putting a Widget build(BuildContext context, State state) method on StatefulWidget gives developers more flexibility when subclassing StatefulWidget.

For example, AnimatedWidget is a subclass of StatefulWidget that introduces an abstract Widget build(BuildContext context) method for its subclasses to implement. If StatefulWidget already had a build method that took a State argument, AnimatedWidget would be forced to provide its State object to subclasses even though its State object is an internal implementation detail of AnimatedWidget.

Conceptually, StatelessWidget could also be implemented as a subclass of StatefulWidget in a similar manner. If the build method were on StatefulWidget rather than State, that would not be possible anymore.

Putting the build function on State rather than StatefulWidget also helps avoid a category of bugs related to closures implicitly capturing this. If you defined a closure in a build function on a StatefulWidget, that closure would implicitly capture this, which is the current widget instance, and would have the (immutable) fields of that instance in scope:

// (this is not valid Flutter code)
class MyButton extends StatefulWidgetX {
  MyButton({super.key, required this.color});

  final Color color;

  @override
  Widget build(BuildContext context, State state) {
    return SpecialWidget(
      handler: () { print('color: $color'); },
    );
  }
}

For example, suppose the parent builds MyButton with color being blue, the $color in the print function refers to blue, as expected. Now, suppose the parent rebuilds MyButton with green. The closure created by the first build still implicitly refers to the original widget and the $color still prints blue even through the widget has been updated to green; should that closure outlive its widget, it would print outdated information.

In contrast, with the build function on the State object, closures created during build implicitly capture the State instance instead of the widget instance:

class MyButton extends StatefulWidget {
  const MyButton({super.key, this.color = Colors.teal});

  final Color color;
  // ...
}

class MyButtonState extends State<MyButton> {
  // ...
  @override
  Widget build(BuildContext context) {
    return SpecialWidget(
      handler: () { print('color: ${widget.color}'); },
    );
  }
}

Now when the parent rebuilds MyButton with green, the closure created by the first build still refers to State object, which is preserved across rebuilds, but the framework has updated that State object's widget property to refer to the new MyButton instance and ${widget.color} prints green, as expected.

See also:

  • StatefulWidget, which contains the discussion on performance considerations.

Implementation

@override
Widget build(BuildContext context) {
  String datasetType = ref.watch(datasetTypeProvider.notifier).state;

  return Column(
    spacing: configRowSpace,
    children: [
      // 20241215 gjw Add comment to allow empty lines between widgets.

      configTopGap,

      Row(
        spacing: configWidgetSpace,
        children: [
          // 20241215 gjw Add comment to allow empty lines between widgets.

          configLeftGap,

          ActivityButton(
            pageControllerProvider: evaluatePageControllerProvider,
            onPressed: () async {
              // Retrieve the boolean state indicating if the evaluation was executed.

              bool adaBoostExecuted = ref.watch(adaBoostEvaluateProvider);
              bool boostTicked = ref.watch(boostEvaluateProvider);
              bool conditionalForestExecuted =
                  ref.watch(conditionalForestEvaluateProvider);
              bool ctreeExecuted = ref.watch(cTreeEvaluateProvider);
              String datasetSplitType = ref.watch(datasetTypeProvider);
              bool forestTicked = ref.watch(forestEvaluateProvider);
              bool linearExecuted = ref.watch(linearEvaluateProvider);
              bool nnetExecuted = ref.watch(nnetEvaluateProvider);
              bool neuralNetExecuted = ref.watch(neuralNetEvaluateProvider);
              bool neuralTicked = ref.watch(neuralEvaluateProvider);
              bool randomForestExecuted =
                  ref.watch(randomForestEvaluateProvider);
              bool rpartExecuted = ref.watch(rpartTreeEvaluateProvider);
              bool svmExecuted = ref.watch(svmEvaluateProvider);
              bool treeExecuted = ref.watch(treeEvaluateProvider);
              bool xgBoostExecuted = ref.watch(xgBoostEvaluateProvider);

              // 20241220 gjw Identify constants corresponding to the various
              // evaluation commands for each model to generate the required
              // TEMPLATE variables. This is being updated to use the TEMPLATE
              // variables one model at a time. Those that have _model_ are
              // updated.

              String ea = 'evaluate_model_adaboost';
              String ec = 'evaluate_model_ctree';
              String el = 'evaluate_model_linear';
              String en = 'evaluate_model_nnet';
              String er = 'evaluate_model_rpart';
              String es = 'evaluate_model_svm';
              String ex = 'evaluate_model_xgboost';
              String ent = 'evaluate_model_neuralnet';

              String ecf = 'evaluate_model_cforest';
              String erf = 'evaluate_model_rforest';

              // 20241220 gjw Finally we will run the generic templates for
              // the various performance measures.

              String em = 'evaluate_measure_error_matrix';
              String ro = 'evaluate_measure_roc';
              String erc = 'evaluate_measure_riskchart';
              String hd = 'evaluate_measure_hand';

              // Execute evaluation for rpart model if it was executed and treeExecuted is true.

              await executeEvaluation(
                executed: rpartExecuted && treeExecuted,
                parameters: [er, em, ro, erc, hd],
                datasetSplitType: datasetSplitType,
                context: context,
                ref: ref,
              );

              // Execute evaluation for ctree model if it was executed and treeExecuted is true.

              await executeEvaluation(
                executed: ctreeExecuted && treeExecuted,
                parameters: [ec, em, ro, erc, hd],
                datasetSplitType: datasetSplitType,
                context: context,
                ref: ref,
              );

              // Execute evaluation for Random Forest model if executed and forest box is ticked.

              await executeEvaluation(
                executed: randomForestExecuted && forestTicked,
                parameters: [erf, em, ro, erc, hd],
                datasetSplitType: datasetSplitType,
                context: context,
                ref: ref,
              );

              // Execute evaluation for Conditional Forest model if executed and forest box is ticked.

              await executeEvaluation(
                executed: conditionalForestExecuted && forestTicked,
                parameters: [ecf, em, ro, erc, hd],
                datasetSplitType: datasetSplitType,
                context: context,
                ref: ref,
              );

              // Execute evaluation for AdaBoost model if executed and boost box is ticked.

              await executeEvaluation(
                executed: adaBoostExecuted && boostTicked,
                parameters: [ea, em, ro, erc, hd],
                datasetSplitType: datasetSplitType,
                context: context,
                ref: ref,
              );

              // Execute evaluation for XGBoost model if executed and boost box is ticked.

              await executeEvaluation(
                executed: xgBoostExecuted && boostTicked,
                parameters: [ex, em, ro, erc, hd],
                datasetSplitType: datasetSplitType,
                context: context,
                ref: ref,
              );

              // Execute evaluation for SVM model if executed.

              await executeEvaluation(
                executed: svmExecuted,
                parameters: [es, em, ro, erc, hd],
                datasetSplitType: datasetSplitType,
                context: context,
                ref: ref,
              );

              // Execute evaluation for linear model if executed.

              await executeEvaluation(
                executed: linearExecuted,
                parameters: [el, em, ro, erc, hd],
                datasetSplitType: datasetSplitType,
                context: context,
                ref: ref,
              );

              // Execute evaluation for Neural Network model if executed and neural network box is ticked.

              await executeEvaluation(
                executed: neuralTicked && nnetExecuted,
                parameters: [en, em, ro, erc, hd],
                datasetSplitType: datasetSplitType,
                context: context,
                ref: ref,
              );

              // Execute evaluation for Neural Net model if executed and neural network box is ticked.

              await executeEvaluation(
                executed: neuralTicked && neuralNetExecuted,
                parameters: [ent, em, ro, erc, hd],
                datasetSplitType: datasetSplitType,
                context: context,
                ref: ref,
              );

              await ref.read(evaluatePageControllerProvider).animateToPage(
                    // Index of the second page.
                    1,
                    duration: const Duration(milliseconds: 300),
                    curve: Curves.easeInOut,
                  );
            },
            child: const Text('Evaluate'),
          ),

          const Text('Model:', style: normalTextStyle),
          ...modelConfigs.map((config) {
            bool enabled = _isEvaluationEnabled(config);

            return Row(
              children: [
                LabelledCheckbox(
                  key: Key(config.key),
                  tooltip: '',
                  label: config.label,
                  provider: config.provider,
                  enabled: enabled,
                  onSelected: (ticked) {
                    setState(() {
                      if (ticked != null) {
                        ref.read(config.provider.notifier).state = ticked;
                      }
                    });
                  },
                ),
              ],
            );
          }).toList(),
        ],
      ),
      Row(
        spacing: configWidgetSpace,
        children: [
          configLeftGap,
          Text('Evaluation Dataset: '),
          // Widget to display dataset type selection as choice chips with tooltips.

          ChoiceChipTip<String>(
            // Generate list of dataset type options, filtering based on partition toggles.

            options: datasetTypes.keys
                .where(
                  (key) => ref.read(partitionProvider) || key == 'Complete',
                )
                .map(
                  (key) => key == 'Tuning' &&
                          ref.watch(useValidationSettingProvider)
                      ? 'Validation'
                      : key,
                )
                .toList(),
            // Set selected option, handling Tuning/Validation text swap and defaulting to Complete when partitions disabled.

            selectedOption: !ref.read(partitionProvider)
                ? 'Complete'
                : (datasetType == 'Tuning' &&
                        ref.watch(useValidationSettingProvider)
                    ? 'Validation'
                    : datasetType),
            // Create tooltips map, replacing 'Tuning' key with 'Validation'
            // when validation is enabled and filtering based on partition setting.

            tooltips: Map.fromEntries(
              datasetTypes.entries
                  .where(
                    (entry) =>
                        ref.read(partitionProvider) ||
                        entry.key == 'Complete',
                  )
                  .map(
                    (entry) => MapEntry(
                      entry.key == 'Tuning' &&
                              ref.watch(useValidationSettingProvider)
                          ? 'Validation'
                          : entry.key,
                      entry.value,
                    ),
                  ),
            ),
            // Handle selection changes by updating state and provider.

            onSelected: (chosen) {
              setState(() {
                if (chosen != null) {
                  datasetType = chosen;
                  ref.read(datasetTypeProvider.notifier).state = chosen;
                }
              });
            },
          ),
        ],
      ),
    ],
  );
}