Tinovimba Mawoyo
Tinovimba Mawoyo

Reputation: 410

Flutter IOS blank screen

I have a flutter app i have developed and it is running efficiently on a real device with zero errors or warnings in debug mode. however when i deploy a release to the same real device it produces a white screen on most pages. I am producing the release using X-code. What could be the problem?

Upvotes: 1

Views: 1428

Answers (2)

Awais Rehman
Awais Rehman

Reputation: 674

  1. Open Terminal and Go to /ios folder inside your project.
  2. Executes pod deintegrate command.
  3. Then after pod install
  4. Run your project Flutter run

Upvotes: 1

Dipak Prajapati
Dipak Prajapati

Reputation: 154

connect your device using cable.

then write following command in terminal.

  • flutter run

to see error log in terminal in red colors.

Upvotes: 1

Related Questions