最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

ios - SwiftUI ColorScheme changes when app is backgrounded - Stack Overflow

programmeradmin3浏览0评论

I have a basic project reading the environment variable for ColorScheme, what i noticed is given my app is in light mode, when I background the app, the color scheme always switches between dark and light even if I never change the color mode.

  struct ContentView: View {
      @SwiftUI.Environment(\.colorScheme) var colorScheme

      var body: some View {
          VStack {
              let _ = Self._printChanges()
              let _ = print("====== colorscheme \(colorScheme)")
              Image(systemName: "globe")
                  .imageScale(.large)
                  .foregroundStyle(.tint)
              Text("Hello, world!")
          }
          .padding()
      }
  }

when i background the app it prints

ContentView: _colorScheme changed.
====== colorscheme dark
ContentView: _colorScheme changed.
====== colorscheme light

Has anyone noticed this issue? this a bug or design? and how to stop that from happening?

I have a basic project reading the environment variable for ColorScheme, what i noticed is given my app is in light mode, when I background the app, the color scheme always switches between dark and light even if I never change the color mode.

  struct ContentView: View {
      @SwiftUI.Environment(\.colorScheme) var colorScheme

      var body: some View {
          VStack {
              let _ = Self._printChanges()
              let _ = print("====== colorscheme \(colorScheme)")
              Image(systemName: "globe")
                  .imageScale(.large)
                  .foregroundStyle(.tint)
              Text("Hello, world!")
          }
          .padding()
      }
  }

when i background the app it prints

ContentView: _colorScheme changed.
====== colorscheme dark
ContentView: _colorScheme changed.
====== colorscheme light

Has anyone noticed this issue? this a bug or design? and how to stop that from happening?

Share Improve this question edited Apr 2 at 3:43 Wy th asked Apr 2 at 3:32 Wy thWy th 776 bronze badges 2
  • 1 Have you set .environment(\.colorScheme, .light) at the root view? You need to set this. – Raja Kishan Commented Apr 2 at 4:58
  • this stopped the colorScheme from changing – Wy th Commented yesterday
Add a comment  | 

1 Answer 1

Reset to default 3

This is correct and is by design. When your app moves to the background, iOS needs to save a screen image for use in the app switcher.

Since the device may switch between light/dark mode while your app is in the background it grabs two screen images; One in light mode and one in dark mode.

iOS then uses the appropriate image in the switcher depending on the current scheme.

You can't prevent this from happening.

发布评论

评论列表(0)

  1. 暂无评论