Navigation

    Qt Forum

    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Search
    • Unsolved
    1. Home
    2. Tags
    3. status bar
    Log in to post

    • Painting behind system bars using Qt/Qml
      Showcase • qml android ios navigation status bar • • J.Hilk  

      1
      7
      Votes
      1
      Posts
      546
      Views

      No one has replied

    • UNSOLVED QML elements over device's status bar
      QML and Qt Quick • qml android ios status bar • • guidupas  

      13
      0
      Votes
      13
      Posts
      4267
      Views

      Thanks !
    • Help with info.plist
      Mobile and Embedded • ios icon status bar info.plist • • VictorKoenders  

      1
      0
      Votes
      1
      Posts
      588
      Views

      No one has replied

    • Fixing the size of a StatusBar
      QML and Qt Quick • visibility status bar rowlayout • • Tim Angus  

      2
      0
      Votes
      2
      Posts
      1107
      Views

      In case anyone else has this problem, adding this to the RowLayout does the trick: Rectangle { height: rowLayout.childrenRect.height } The Rectangle by default has 0 width, and the RowLayout's childrenRect.height property has the value we're after, i.e. the maximum height of its children, visible or not. Bit of a hack, obviously.
    • How do I change iOS status bar colour?
      Mobile and Embedded • ios status bar • • eLim  

      2
      0
      Votes
      2
      Posts
      790
      Views

      You can change the status bar "style" via the UIApplication. setStatusBarStyle() function. UIApplication Class Reference Example Code: https://github.com/benlau/quickios/blob/master/qisystemutils.mm#L305