LoginSignup
25
11

More than 3 years have passed since last update.

[SwiftUI] 画面の背景色を設定する方法

Posted at

SwiftUIにおいて、画面全体の背景色を設定する方法はいくつかあります。

これが一番無難かと思います。

struct MyView: View {

  var body: some View {

    ZStack {
      Color.blue
        .edgesIgnoringSafeArea(.all)

      Text("Hello")
    }

  }
}

一応こんな方法も

struct MyView: View {

  var body: some View {

    Color.blue
      .edgesIgnoringSafeArea(.all)
      .overlay(Group {

        Text("Hello")

      })

  }
}
25
11
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
25
11