LoadingPlaceholder QML Type

A placeholder for loading pages. More...

Import Statement: import org.kde.kirigami
Inherits:

PlaceholderMessage

Properties

Detailed Description

Example usage:

Kirigami.Page {
    Kirigami.LoadingPlaceholder {
        anchors.centerIn: parent
    }
}
Kirigami.Page {
    Kirigami.LoadingPlaceholder {
        anchors.centerIn: parent
        determinate: true
        progressBar.value: loadingValue
    }
}

Property Documentation

determinate : bool [default: false]

This property holds whether the loading message shows a determinate progress bar or not.

This should be true if you want to display the actual percentage when it's loading.


progressBar : ProgressBar

This property holds a progress bar.

This should be used to access the progress bar to change its value.