Answers for "swiftui button background color"

1

button color swiftui

Button(action: {self.buttonTapped()}) {
  Text("Button")
   		.padding(.all, 12)
  		.foregroundColor(.white)
  		.background(Color.red)
}
Posted by: Guest on March-13-2020
2

give background color swiftui

Color.blue.edgesIgnoringSafeArea(.all)
Posted by: Guest on March-13-2020
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

Code answers related to "swiftui button background color"

Code answers related to "Swift"

Browse Popular Code Answers by Language