When you prepare screenshots for AppStore submission, you are probably running Flutter app from VS Code into multiple iOS simulators to get right resolutions.
Remember to hide debug label that is shown by default when debugging (right top corner of the app). On one occasion Apple rejected my build for that exact reason. You can disable this in your MaterialApp widget by setting property like below.
debugShowCheckedModeBanner: false,
Leave a Reply