build method

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

Constructs the pylon-injected widget tree, providing the footer builder to descendants. Ensures local scoping for performance, avoiding unnecessary rebuilds in parent screens like ChatScreen. Integrates with Pylon for dependency resolution, supporting Sidebar or action footers.

Implementation

@override
Widget build(BuildContext context) => Pylon<InjectScreenFooter?>(
      local: true,
      value: this,
      builder: builder,
    );