alignY property
Alignment of the popup in the vertical direction.
Possible values are:
start
: Align popup to the start of a container. This is equivalent to 'flex-start'. (Default)center
: Align popup to the center of a container. This is equivalent to 'center'.end
: Align popup to the end of a container. This is equivalent to 'flex-end'.before
: Align popup before a container. This is not equivalent to any CSS positioning model.after
: Align popup after a container. This is not equivalent to any CSS positioning model.
Implementation
@Input('alignPositionY')
set alignY(String align) {
_alignOriginY = Alignment.parse(align);
_updateSource();
}