RenderStack constructor Null safety
- {List<
RenderBox> ? children, - AlignmentGeometry alignment = AlignmentDirectional.topStart,
- TextDirection? textDirection,
- StackFit fit = StackFit.loose,
- Clip clipBehavior = Clip.hardEdge}
Creates a stack render object.
By default, the non-positioned children of the stack are aligned by their top left corners.
Implementation
RenderStack({
List<RenderBox>? children,
AlignmentGeometry alignment = AlignmentDirectional.topStart,
TextDirection? textDirection,
StackFit fit = StackFit.loose,
Clip clipBehavior = Clip.hardEdge,
}) : assert(alignment != null),
assert(fit != null),
assert(clipBehavior != null),
_alignment = alignment,
_textDirection = textDirection,
_fit = fit,
_clipBehavior = clipBehavior {
addAll(children);
}