Answers for "background color of view swiftui"

0

swiftui background color

Group {
	//Views inside the highest view in the hierarchy
}.background(Color.red.edgesIgnoringSafeArea(.all))
Posted by: Guest on June-30-2020
0

how to change background color of stackview swift

extension UIStackView {
    func addBackground(color: UIColor) {
        let subView = UIView(frame: bounds)
        subView.backgroundColor = color
        subView.autoresizingMask = [.flexibleWidth, .flexibleHeight]
        insertSubview(subView, at: 0)
    }
}
Posted by: Guest on April-13-2020

Code answers related to "background color of view swiftui"

Code answers related to "Swift"

Browse Popular Code Answers by Language