skip to Main Content

This what my app looks like running on the simulator (iPhone 8 Plus):

enter image description here

And this what it looks like running on my device (iPhone 7 Plus):

enter image description here

Why does it look like so much is missing from the app when I run it on my device? Also, a lot of the buttons/actions do not work. My data is sourced from Firestore and I am using Firebase for my app. The iOS Deployment Target is 14.4, which is accurate for my phone. I’m wondering if this could have something to do with my "Copy Bundle Resources" as this has caused me some issues in the past.

enter image description here

Any help/guidance on how I can troubleshoot this is much appreciated!

4

Answers


  1. Chosen as BEST ANSWER

    Thank you everyone for the answers. I did indeed have to disable dark mode. It looks like the key has changed to the following, as per this link: Is it possible to opt-out of dark mode on iOS 13?

    <key> Appearance</key>
    <string>Light</string>
    

  2. It Looks like your device is in dark mode. Please do changes in UI to support dark mode or you can use your app by disabling dark mode by referring this

    Login or Signup to reply.
  3. It seems like, You haven’t provided the support for the Dark mode. To fix this issue, Either you have to give support for dark mode or disable dark mode by adding the below key in the info.plist file. It will fix your issue.

    <key>UIUserInterfaceStyle</key>
    <string>Light</string>
    
    Login or Signup to reply.
  4. Your device is in the dark theme whereas your simulator is in light theme,
    You can assign it to work on a light theme by toggling the appearance as shown in the image below.

    enter image description here

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search