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 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:

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) {
  if (children.isEmpty) {
    if (allowEmptyTarget) {
      return DragTarget<T>(
        onAcceptWithDetails: (o) => onAdded?.call(o.data, 0),
        onWillAcceptWithDetails: (b) => onWillAccept?.call(b.data) ?? true,
        onLeave: onLeave,
        builder: ((_, __, ___) {
          return SizedBox(
            width: MediaQuery.of(context).size.width,
            height: MediaQuery.of(context).size.height,
          );
        }),
      );
    } else {
      return Container();
    }
  }

  return ConstrainedBox(
    constraints: BoxConstraints(
      maxWidth: MediaQuery.of(context).size.width,
      maxHeight: MediaQuery.of(context).size.height,
    ),
    child: LayoutBuilder(
      builder: (context, constraints) {
        double rWidth = width ?? constraints.maxWidth;
        double rHeight = height ?? constraints.maxHeight;

        double wrapMaxSize = axis == Axis.horizontal ? rWidth : rHeight;
        bool fitView = useFitView(
          maxSize: wrapMaxSize,
          constraints: Size(rWidth, rHeight),
          length: children.length,
          axis: axis,
        );

        // Number of columns.
        int mColumns = 0;

        double? wrapSize;

        if (fitView) {
          // Minimal diagonal of a square.
          double min = double.infinity;

          // To find the [mColumns], iterate through every possible number of
          // columns and pick the arrangement with [min]imal diagonal.
          for (int columns = 1; columns <= children.length; ++columns) {
            int rows = (children.length / columns).ceil();

            // Current diagonal of a single square.
            double diagonal =
                (pow(rWidth / columns, 2) + pow(rHeight / rows, 2))
                    .toDouble();

            // If there's any [children] left outside, then their diagonal will
            // always be bigger, so we need to recalculate.
            int outside = children.length % columns;
            if (outside != 0) {
              // Diagonal of an outside [children] is calculated with some
              // coefficient to force the algorithm to pick non-standard
              // arrangement.
              double coef = 1;

              // Coefficient is hard-coded for some cases in order to [FitView] to
              // look better.
              if (children.length == 3) {
                coef = rWidth > rHeight ? 0.5 : 0.87;
              } else if (children.length == 5) {
                if (rWidth > rHeight) {
                  coef = 0.8;
                } else {
                  coef = outside == 1 ? 0.8 : 1.5;
                }
              } else if (children.length == 10) {
                if (rWidth > rHeight) {
                  coef = outside == 2 ? 0.65 : 0.8;
                } else {
                  coef = 0.8;
                }
              } else if (children.length == 9) {
                if (rWidth > rHeight) {
                  coef = 0.9;
                } else {
                  coef = 0.5;
                }
              } else if (children.length == 8) {
                if (rWidth > rHeight) {
                  coef = outside == 2 ? 0.59 : 0.8;
                } else {
                  coef = 0.8;
                }
              } else if (children.length == 7) {
                if (rWidth > rHeight) {
                  coef = rWidth / rHeight >= 3 ? 0.7 : 0.4;
                } else {
                  coef = 0.4;
                }
              } else if (children.length == 6) {
                if (rWidth > rHeight) {
                  coef = (rWidth / rHeight > 3) ? 0.57 : 0.7;
                } else {
                  coef = 0.7;
                }
              } else {
                if (rWidth > rHeight) {
                  coef = outside == 2 ? 0.59 : 0.77;
                } else {
                  coef = 0.6;
                }
              }

              diagonal =
                  (pow(rWidth / outside * coef, 2) + pow(rHeight / rows, 2))
                      .toDouble();
            }
            // Tweak of a standard arrangement.
            else if (children.length == 4) {
              mColumns = rWidth / rHeight < 0.56 ? 1 : mColumns;
            }

            if (diagonal < min && min - diagonal > 1) {
              mColumns = columns;
              min = diagonal;
            }
          }
        }

        if (axis != null) {
          wrapSize = calculateSize(
            maxSize: wrapMaxSize,
            constraints: Size(rWidth, rHeight),
            length: children.length,
            axis: axis!,
          );
        }

        return _ReorderableFit<T>(
          key: key,
          children: children,
          itemBuilder: itemBuilder,
          decoratorBuilder: decoratorBuilder,
          overlayBuilder: overlayBuilder,
          mColumns: mColumns,
          wrapSize: wrapSize,
          dividerColor: dividerColor,
          dividerSize: dividerSize,
          onReorder: onReorder,
          onAdded: onAdded,
          onDoughBreak: onDoughBreak,
          onDragCompleted: onDragCompleted,
          onDragEnd: onDragEnd,
          onDragStarted: onDragStarted,
          onDraggableCanceled: onDraggableCanceled,
          hoverColor: hoverColor,
          useWrap: !fitView,
          axis: axis,
          left: left,
          right: right,
          top: top,
          bottom: bottom,
          width: width,
          height: height,
          onLeave: onLeave,
          onWillAccept: onWillAccept,
          onOffset: onOffset,
          useLongPress: useLongPress,
          allowDraggingLast: allowDraggingLast,
          itemConstraints: itemConstraints,
          borderRadius: borderRadius,
        );
      },
    ),
  );
}