AbsoluteLayout

AbsoluteLayout is a container that implements the ViewsContainer interface.Child Views can be positioned at arbitrary positions in the container space.

To create an AbsoluteLayout, use the function

func NewAbsoluteLayout(session Session, params Params) AbsoluteLayout

The child View is positioned using the properties of the SizeUnit type: "left", "right", "top" and "bottom"(respectively, the constants Left, Right, Top and Bottom). You can set any of these properties on the child View.If neither "left" or "right" is specified, then the child View will be pinned to the left edge of the container.If neither top nor bottom is specified, then the child View will be pinned to the top edge of the container.