AbsoluteLayout

A container that allows to position child views at arbitrary positions within its container space. It's similar to CSS's absolute positioning, where elements can be placed anywhere on the page without affecting other elements. The main advantage of AbsoluteLayout over other layouts is that it offers more control over view placement and doesn't restrict children to a specific direction (horizontal or vertical)

Create from source

func NewAbsoluteLayout(session Session, params Params) AbsoluteLayout

Create new absolute layout object and returns its interface

Create from resource

AbsoluteLayout {
    id = absoluteLayout,
    width = 100%,
    height = 100%,
    content = [],
}

Interface description

Inherit methods, properties and events from ViewsContainer