Status bar doesn't show up in Flutter Status bar doesn't show up in Flutter flutter flutter

Status bar doesn't show up in Flutter


Please check the two files created when creating the flutter project and comment out or delete.

  • ./ios/Runner/Info.plist
<key>UIMainStoryboardFile</key><string>Main</string><key>UIStatusBarHidden</key>                <- <here><true/>                                     <- <here><key>UISupportedInterfaceOrientations</key>
  • ./android/app/src/main/res/values/styles.xml
<style name="NormalTheme" parent="@android:style/Theme.Black.NoTitleBar">    <item name="android:windowFullscreen">true</item>  <- <here>


Simply wrap your scaffold with SafeArea widget,and your top edge won't touch status bar


For IOS:Please check the two files created when creating the flutter project and update the value from false to true.

./ios/Runner/Info.plist

<key>UIViewControllerBasedStatusBarAppearance</key><false/> -> Change to true