How to run Flutter app in iOS simulator without yellow tape box

Viewed 15

When run a Flutter app in iOS simulator, it shows a yellow tape box when there is a layout overflow. Is there any way to disable this behavior? (Because I need to take screenshots for App Store.) I tried to run Flutter in simulator with --release but the simulator doesn't allow it.

1 Answers

You can run it in release mode but then the RenderFlex is still there and simply not shown.

flutter run --release

Flutter Buildmodes

Related