Thanks. I figured out i can use Flow for a better layout without
On 2 feb, 03:25, "Roberto Rivera S." <
rrive...@gmail.com> wrote:
> Hi, Nique.
> The rect property it's just for define the box and the original
> position, with this format: left top width height. All in pixel.
> If you want a fluid layout, you need to pay attention to the anchors
> property, and the attachTo method. So, in your case, the attachTo
> should be something like this:
> <code>
> uki(...).attachTo(window, '960 600', {
> minSize: '600 0'});
>
> </code>
>
> That means that you expect a window to be 960px x 600px with a min
> size of 600. Add anchors for the four sides (anchors: 'left top right
> bottom'), and you get a fluid layout that resize in all directions.