Answers for "how to make background colour in navigation view swiftui"

3

swift change navigation bar color

// Navigation Bar:
navigationController?.navigationBar.barTintColor = UIColor.green

// Navigation Bar Text:
navigationController?.navigationBar.titleTextAttributes = [.foregroundColor: UIColor.orange]

// Tab Bar:
tabBarController?.tabBar.barTintColor = UIColor.brown

// Tab Bar Text:
tabBarController?.tabBar.tintColor = UIColor.yellow
Posted by: Guest on March-04-2020
3

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
0

how to change background color swift

self.view.backgroundColor = .black / .blue / .purple / .clear /ect.
Posted by: Guest on March-30-2020

Code answers related to "how to make background colour in navigation view swiftui"

Code answers related to "Swift"

Browse Popular Code Answers by Language