Post

Replies

Boosts

Views

Activity

Navigation Bar Color
I am trying to change the navigation bar background color of my view. Init() {    let coloredAppearance = UINavigationBarAppearance()     //coloredAppearance.configureWithTransparentBackground() //It doesnt matter what I use in here, it continues the same coloredAppearance.backgroundColor = UIColor(red: 202.0/255.0, green: 52.0/255.0, blue: 86.0/255.0, alpha: 1.0)     coloredAppearance.titleTextAttributes = [.foregroundColor: UIColor.white]      UINavigationBar.appearance().standardAppearance = coloredAppearance UINavigationBar.appearance().compactAppearance = coloredAppearance UINavigationBar.appearance().scrollEdgeAppearance = coloredAppearance      UINavigationBar.appearance().tintColor = .white However if you get the red, green, blue, and alpha used above, you will see the color is being shown slightly different on the NavigationBar. What's the reason for that ? Thx
1
0
426
Nov ’21
Button inside Form
I have a form and at the end of it, a button. Form { Section { } //close section button } //close form However, the button is appearing surrounded by white space, like inside a textbox. What's the reason for that?
1
0
429
Nov ’21
TabBar 2 clicks
I have a TabBar with 8 items. And as everybody knows, more than 5 makes the 5th item the MORE button and it's perfect. The problem is when I hit it, the button just blinks. If I hit again, then the other options are shown. Why ? Thx
1
0
401
Nov ’21
TabBar Transitions
I have a TabBar with 3 items: Home ScrollView Products NavigationView Users NavigationView When clicking on the tabBar buttons, I will go back to the related view. However, at the point where I had left. I would like to every time I move to a different tab, it starts fresh like 1st time. a) If it's a scrollview, after coming back to the tab I would like the view scrolled to the top. b) If it's a navigationView, after coming back to the tab, I would like to scroll to the top and move to the Navigation root list. How can I do it. Thx folks
0
0
370
Dec ’21
Navigation Bar Color
I am trying to change the navigation bar background color of my view. Init() {    let coloredAppearance = UINavigationBarAppearance()     //coloredAppearance.configureWithTransparentBackground() //It doesnt matter what I use in here, it continues the same coloredAppearance.backgroundColor = UIColor(red: 202.0/255.0, green: 52.0/255.0, blue: 86.0/255.0, alpha: 1.0)     coloredAppearance.titleTextAttributes = [.foregroundColor: UIColor.white]      UINavigationBar.appearance().standardAppearance = coloredAppearance UINavigationBar.appearance().compactAppearance = coloredAppearance UINavigationBar.appearance().scrollEdgeAppearance = coloredAppearance      UINavigationBar.appearance().tintColor = .white However if you get the red, green, blue, and alpha used above, you will see the color is being shown slightly different on the NavigationBar. What's the reason for that ? Thx
Replies
1
Boosts
0
Views
426
Activity
Nov ’21
Button inside Form
I have a form and at the end of it, a button. Form { Section { } //close section button } //close form However, the button is appearing surrounded by white space, like inside a textbox. What's the reason for that?
Replies
1
Boosts
0
Views
429
Activity
Nov ’21
TabBar 2 clicks
I have a TabBar with 8 items. And as everybody knows, more than 5 makes the 5th item the MORE button and it's perfect. The problem is when I hit it, the button just blinks. If I hit again, then the other options are shown. Why ? Thx
Replies
1
Boosts
0
Views
401
Activity
Nov ’21
TabBar Transitions
I have a TabBar with 3 items: Home ScrollView Products NavigationView Users NavigationView When clicking on the tabBar buttons, I will go back to the related view. However, at the point where I had left. I would like to every time I move to a different tab, it starts fresh like 1st time. a) If it's a scrollview, after coming back to the tab I would like the view scrolled to the top. b) If it's a navigationView, after coming back to the tab, I would like to scroll to the top and move to the Navigation root list. How can I do it. Thx folks
Replies
0
Boosts
0
Views
370
Activity
Dec ’21