Fill Layout

layout:{
    type: 'fill'
}

Demo

SAMPLE
CODE

The fill layout extends ludo.layout.Relative, and is a layout for one single child view. It's layout properties will automatically be set to

{
    width:'matchParent',
    height:'matchParent',
    alignParentTop:true,
    alignParentLeft:true
}

These layout properties says that the view should span use all available space inside it's parent view.

One example of it can be seen above where the ludo.calendar.Calendar view is placed inside a ludo.FramedView

Generated 2016-12-02 19:27:14