buildWidget abstract method

BuildResult buildWidget(
  1. MathOptions options,
  2. List<BuildResult?> childBuildResults
)

Compose Flutter widget with child widgets already built

Subclasses should override this method. This method provides a general description of the layout of this math node. The child nodes are built in prior. This method is only responsible for the placement of those child widgets accroding to the layout & other interactions.

Please ensure children works in the same order as updateChildren, computeChildOptions, and buildWidget.

Implementation

BuildResult buildWidget(
    MathOptions options, List<BuildResult?> childBuildResults);