RenderStack constructor
RenderStack({
- List<
RenderBox> ? children, - AlignmentGeometry alignment = AlignmentDirectional.topStart,
- TextDirection? textDirection,
- StackFit fit = StackFit.loose,
- Clip clipBehavior = Clip.hardEdge,
Creates a stack render object with paint order support.
Implementation
RenderStack({
super.children,
super.alignment,
super.textDirection,
super.fit,
super.clipBehavior,
});