Questions tagged [tabbar]

TabBar is a ActionScript UI component used for switching between different application states.

TabBar is a ActionScript UI component used for switching between different application states.

The TabBar control lets you create a horizontal or vertical group of tab navigation items by defining the labels and data associated with each tab.

1577 questions
64
votes
9 answers

How to change background color of TabBar without changing the AppBar in flutter?

How to change background color of TabBar without changing the AppBar? The TabBar does not have a background property, is there a workaround?
amater
  • 661
  • 1
  • 6
  • 10
45
votes
8 answers

Tab Bar Application With Navigation Controller

I have a simple iPhone app that has a tab bar and 3 tabs. Each tab loads as a separate nib with a corresponding controller. Each nib contains a tableview with some other controls for searching/filtering etc. What I would like (and cant seem to find…
Adrian Collins
32
votes
3 answers

Change the tab selection color in TabBar SwiftUI

I am trying to change the color of selected tab in TabBar, but nothing worked. I can change the TabBar backgroundColor by writing struct ContentView: View { init() { UITabBar.appearance().backgroundColor = UIColor.purple } …
Anjali Kevadiya
  • 3,567
  • 4
  • 22
  • 43
31
votes
10 answers

How to detect TabBar change in Flutter?

I need to detect TabBar when I swipe then print somethings on console, how I can do that? This is my code. bottomNavigationBar: new Material( color: Colors.blueAccent, child: new TabBar( onTap: (int index){…
Ashtav
  • 2,586
  • 7
  • 28
  • 44
31
votes
8 answers

How to set the Navigation Bar Color of the Tab Bar Configure Menu

removed dead ImageShack link As you can see the view I need to change is the provided view to customize the tabbar order. I want to change the color of the navigation bar (displaying "Konfigurieren" which means "Configure"), I already found out how…
gabtub
  • 1,460
  • 2
  • 18
  • 21
29
votes
11 answers

How can I change the text and icon colors for tabBarItems in iOS 7?

How can I change the text and icon colors for UITabBar and UITabBarItems in iOS 7? The default gray text seems dim and hard to read for unselected tabbar items.
Ed Fernandez
  • 1,823
  • 2
  • 14
  • 18
28
votes
15 answers

Remove top line from TabBar

On iOS 10 this code doesn't work in order to remove the tabBar shadow line: [[UITabBar appearance] setShadowImage:[[UIImage alloc] init]]; Somebody knows, what must I do to remove it? On iOS 9.3 with this two lines the line is removed, but iOS 10…
jcamacho
  • 818
  • 2
  • 12
  • 25
27
votes
8 answers

SwiftUI - Change TabBar Icon Color

I can't change the TabBar Color in SwiftUI. I try it with the TabbedView, with the Image/Text and with a Stack. Nothing works for me. using .foregroundColor doesn't work. TabbedView(selection: $selection){ TextView() .tag(0) .tabItemLabel( …
Max
  • 683
  • 2
  • 8
  • 12
24
votes
4 answers

iOS TabbarViewController hide the tab bar

I have a viewcontroller that it implement UITabbarViewController, and I want to hide the tab bar and override it by myself, self.tabBar.hidden = YES; the tab bar disappeared BUT there is a blank area(the blue one) at the bottom of the view. I dont…
jxdwinter
  • 2,339
  • 6
  • 36
  • 56
22
votes
7 answers

How to align `TabBar` to the left with a custom starting position

I'm currently working on a Flutter app in which I'd like to display the TabBar starting on the left. If an AppBar has a leading property I'd like to indent the starting position of the TabBar to match it. Then on the scroll, it would still pass…
odonckers
  • 368
  • 1
  • 3
  • 11
22
votes
2 answers

iPhone 4 Tab Bar Icons

I'm having some issues getting high resolution tab bar icons displaying correctly for iPhone 4. Basically I'm using the Apple guidelines of 96 x 64 for high resolution icons, but when I do this, my icon looks like it is being scaled many times in…
mixja
  • 6,977
  • 3
  • 32
  • 34
20
votes
5 answers

Remove TabBar item in Swift

I currently try to find a way to remove while run the app a TabBar Item, i found a way to enable or disable it but not to complete remove it. For disable it i do: In ViewDidLoad if let tabBarItem = self.tabBarController?.tabBar.items?[3] as?…
Fabian Boulegue
  • 6,476
  • 14
  • 47
  • 72
19
votes
2 answers

How to minimize whole application in android?

I was developed android application. More over i have completed, but i want to minimize option. I have used tab bar. In that i want to minimize tab. When user click minimize tab to minimize whole application. my tabbar code as.. public class…
Selva
  • 839
  • 10
  • 25
  • 40
19
votes
6 answers

Is it possible to hide the tabbar when a button is pressed to allow a full screen view of the content?

I have a UITabBar in the detail view of my navigation based application. I am storing text and images in a tableview and would like the user to be able to tap on a cell to hide the navigation controller and the tabbar for full screen viewing of the…
Jonah
  • 4,810
  • 14
  • 63
  • 76
18
votes
3 answers

How to create a tab bar at center of the screen in flutter?

I'm trying to create a tab bar at the center of the screen using flutter while trying it I gave TabBarView in a column and I was stuck in this error. Please resolve this. I/flutter ( 3983): ══╡ EXCEPTION CAUGHT BY RENDERING LIBRARY…
Xor96
  • 424
  • 1
  • 3
  • 13
1
2 3
99 100