Search code examples
flutterdartflutter-layout

How to get status bar height in Flutter?


How do I get the status bar height?

enter image description here


Solution

  • var height = MediaQuery.of(context).viewPadding.top;
    

    Note: This will only work on mobile devices because other platforms don't have a dedicated status bar and it will returns 0.0 for them.