Flow.unwrapped constructor
- Key? key,
- required FlowDelegate delegate,
- List<
Widget> children = const <Widget>[], - Clip clipBehavior = Clip.hardEdge,
Creates a flow layout.
Does not wrap the given children in repaint boundaries, unlike the default constructor. Useful when the child is trivial to paint or already contains a repaint boundary.
Implementation
const Flow.unwrapped({
super.key,
required this.delegate,
super.children,
this.clipBehavior = Clip.hardEdge,
});