Hello !
I wanted to know if there is a "Spinner" type component for Sailfish.
Something to indicate that there is a task in progress, but that we don't know
the state of the task.
I have found that "progress circle" in the components demo. But it seems to be
tailored for tasks for which we kno
FYI--- Begin Message ---
Hi Lucien,
Sailfish Silica will have BusyIndicator component with size variants small,
medium and large (size: BusyIndicatorSize.Small/Medium/Large).
Page {
BusyIndicator {
anchors.centerIn: parent
running: model.status == Model.Loading
}
}
Cheer
Nice to know :)
--
Sent from my Nokia N9
On 13/06/13 9:48 PM Lucien XU wrote:
FYI
___
SailfishOS.org Devel mailing list
Hi
I'm porting a app from Meego/Symbian, I need to play a wav file. I used
importQtMultimediaKit1.1 and SoundEffect element. I tought QtMultimediaKit was
only available in Meego / Symbian, but my app runs fine in the emulator, so I
guess I'm good to go. I don't hear any sound, I'm assuming it's
Hi again
The app that I'm portin from Meego, it's a timer, so I need the cover to look
the same has the first page, so the user can see the time running in the cover,
just like in the first page.
So, I did:
ApplicationWindow
{
initialPage:FirstPage{}
cover:initialPage//Qt.resolvedUrl("cover/Co
Hi João,
Application cover should have it's own UI, because it has different layout
dimensions than the full-screen application page, different background (often
CoverBackground) and in most cases should have cover actions. Cover and a page
can share an UI component, provided that UI component
Hi João
I have just made a little demo project, importing QtMultimediaKit 1.1,
and a SoundEffect Component.
I added a Button component to the Column to play the sound when clicked.
My Demo works, I get a swish sound when the button is clicked.
You will find the code of my FirstPage at the b