build method

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

Builds the field widget using the Pylon pattern for efficient, reactive rendering. Wraps the custom builder with the field's value, enabling context-aware input UIs that respond to data changes without full rebuilds.

Returns: The rendered input widget.

Implementation

@override
Widget build(BuildContext context) => Pylon<ArcaneField<T>>(
      value: this,
      builder: builder,
    );