美文网首页SwiftUI
SwiftUI-视图的背景色

SwiftUI-视图的背景色

作者: 白色天空729 | 来源:发表于2019-11-19 16:07 被阅读0次

    原文:https://iosdevcenters.blogspot.com/2019/09/swiftui-background-color-in-view.html

    import SwiftUI
    
    struct ContentView: View {
        var body: some View {
            Color.purple.edgesIgnoringSafeArea(.all)
        }
    }
    
    struct ContentView_Previews: PreviewProvider {
        static var previews: some View {
            ContentView()
        }
    }
    

    效果如图:


    image.png

    相关文章

      网友评论

        本文标题:SwiftUI-视图的背景色

        本文链接:https://www.haomeiwen.com/subject/iixgictx.html