Re: [Ubuntu-phone] Is there an equivalent to Layout.columnSpan available on Ubuntu Touch?

2014-03-31 Thread MichaƂ Sawicz
On 31.03.2014 14:17, David Marceau wrote: > I attempted to do the same on Ubuntu Touch but it didn't compile/run. > > Any suggestions? I see a great emphasis on anchors. Is this the only > way to do this stuff at present? Layouts are a new thing post-Qt 5.0, the proposed images already contain

Re: [Ubuntu-phone] Is there an equivalent to Layout.columnSpan available on Ubuntu Touch?

2014-03-31 Thread Michael Zanetti
Hi, next time please create a new email instead of replying to another thread and changing the subject. It messes up with threaded views in mail clients. On Monday 31 March 2014 09:17:02 David Marceau wrote: > I have a 2-column grid. I would have like to take a label and span it > two columns,

Re: [Ubuntu-phone] Is there an equivalent to Layout.columnSpan available on Ubuntu Touch?

2014-03-31 Thread David Marceau
Being that I couldn't find something equivalent to Layout.columnSpan, I decided to break the Page layout's one grid into 3 grids. grid1 with 2 columns grid2 with 1 column grid3 with 2 columns. When I tried it, it placed all three grids at the top left on top of each other. To resolve this, grid1

[Ubuntu-phone] Is there an equivalent to Layout.columnSpan available on Ubuntu Touch?

2014-03-31 Thread David Marceau
I have a 2-column grid. I would have like to take a label and span it two columns, then follow it with the datepicker which would also span two columns. Using qt layouts, I would: import QtQuick.Layouts 1.1 then within the grid, I would: Layout.columnSpan: 2 I attempted to do the same on Ubuntu