Answers for "swiftui button title 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
0

uibutton swift set title color

Swift 5
button.setTitleColor( .cyan, for: .normal )
Posted by: Guest on October-21-2021

Code answers related to "swiftui button title color"

Code answers related to "Swift"

Browse Popular Code Answers by Language