Como posso centralizar um ActivityIndicator na tela?

3

Como posso centralizar um ActivityIndicator na tela? Meu código atual é:

Column {
    Row {
        ActivityIndicator {
            anchors.leftMargin: units.gu(10)
            running: true
        }
    }
}
    
por MeinAccount 28.05.2013 / 21:33

1 resposta

4

anchors.centerIn: parent é a solução:

ActivityIndicator {
    anchors.centerIn: parent
    running: true
}
    
por MeinAccount 28.05.2013 / 21:42