Re: [Interest] Modal busyIndicator in Android

2015-06-03 Thread Rutledge Shawn
On 3 Jun 2015, at 04:07, Federico Buti bacaro...@gmail.com wrote: Hi list, in the attempt to look as native as possible, I've defined a QML busy indicator for Android as follows: Dialog { property alias text: labelWorking.text standardButtons: StandardButton.NoButton ...

Re: [Interest] Modal busyIndicator in Android

2015-06-03 Thread Federico Buti
Thanks for the insight. I've solved as you suggested: Dialog { property alias text: labelWorking.text contentItem: Rectangle { radius: 3 * Params.scaleFactor width: layout.implicitWidth * 1.2 height: busy.implicitHeight * 1.2 RowLayout {

[Interest] Modal busyIndicator in Android

2015-06-02 Thread Federico Buti
Hi list, in the attempt to look as native as possible, I've defined a QML busy indicator for Android as follows: Dialog { property alias text: labelWorking.text standardButtons: StandardButton.NoButton RowLayout { BusyIndicator { id:busy opacity: