conditional_parent_widget 0.0.2 copy "conditional_parent_widget: ^0.0.2" to clipboard
conditional_parent_widget: ^0.0.2 copied to clipboard

Conditionally wrap a child widget with a parent widget.

stable but not actively maintained

conditional_parent_widget #

Conditionally wrap a subtree with a parent widget without breaking the code tree.

  • condition: the condition depending on which the subtree child is wrapped with the parent.
  • child: The subtree that should always be build.
  • parentBuilder: builds the parent with the subtree child iff condition is true.
  • parentBuilderElse: optional builder to wrap child iff condition is false. (returns just child when this is null)

Usage:

return ConditionalParentWidget(
  condition: shouldIncludeParent,
  parentBuilder: (Widget child) => SomeParentWidget(child: child),
  child: Widget1(
    child: Widget2(
      child: Widget3(),
    ),
  ),
);

Instead of:

Widget child = Widget1(
  child: Widget2(
    child: Widget3(),
  ),
);
///
return shouldIncludeParent ? SomeParentWidget(child: child) : child;
6
likes
130
pub points
82%
popularity

Publisher

unverified uploader

Conditionally wrap a child widget with a parent widget.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

flutter

More

Packages that depend on conditional_parent_widget