PopoverLayoutRender constructor
PopoverLayoutRender({
- RenderBox? child,
- required Alignment alignment,
- required Offset? position,
- required Alignment anchorAlignment,
- required PopoverConstraint widthConstraint,
- required PopoverConstraint heightConstraint,
- Size? anchorSize,
- Offset? offset,
- EdgeInsets margin = const EdgeInsets.all(8),
- required double scale,
- required Alignment scaleAlignment,
- FilterQuality? filterQuality,
- bool allowInvertHorizontal = true,
- bool allowInvertVertical = true,
Implementation
PopoverLayoutRender({
RenderBox? child,
required Alignment alignment,
required Offset? position,
required Alignment anchorAlignment,
required PopoverConstraint widthConstraint,
required PopoverConstraint heightConstraint,
Size? anchorSize,
Offset? offset,
EdgeInsets margin = const EdgeInsets.all(8),
required double scale,
required Alignment scaleAlignment,
FilterQuality? filterQuality,
bool allowInvertHorizontal = true,
bool allowInvertVertical = true,
}) : _alignment = alignment,
_position = position,
_anchorAlignment = anchorAlignment,
_widthConstraint = widthConstraint,
_heightConstraint = heightConstraint,
_anchorSize = anchorSize,
_offset = offset,
_margin = margin,
_scale = scale,
_scaleAlignment = scaleAlignment,
_filterQuality = filterQuality,
_allowInvertHorizontal = allowInvertHorizontal,
_allowInvertVertical = allowInvertVertical,
super(child);