Tab Bar Block

Create custom bottom tabs for Tab Navigator using a Block

You can further customize the bottom tab bar for a Tab Navigator using your own Saved Block. This is especially handy if you want to add other components to the bottom tabs, such as a sticky Audio Player.

Assigning Blocks as a Tab Bar

To replace the default tab bar with your own custom Block, go to Navigate mode, select the Tab Navigator on the left, then switch to the Configs tab in the right panel of the Builder. Find the Tab Bar Block section where you can select an existing Block or create a new one.

Accessing Route Data

You can access the route data from inside the Block which is assigned as the Tab Navigator Block. The route data is an array of objects each representing one of the tabs you have defined for the Tab Navigator. The data will be accessible via a routes property listed in variable dropdowns for components and Actions. This let's you pass the associated icon, label, and name to different components and Actions so you can customize your bottom tabs.

Route Properties

Here's an example of what the object array for the routes property looks like:

[
  {
    "name": "HomeScreen",
    "label": "Home",
    "icon": "Feather/home"
  },
  {
    "name": "FeedScreen",
    "label": "Feed",
    "icon": "Feather/align-left"
  },
  {
    "name": "ArticlesScreen",
    "label": "Articles",
    "icon": "AntDesign/filetext1"
  }
]
NameDescription
nameThe name of the route (the generated Screen name)
labelThe label configured for the tab. Uses the Screen name by default unless explicitly set.
iconThe name of the icon configured for the tab

You'll also have access to a currentRoute property which is a single route object representing the currently active Screen.

{
  "name": "HomeScreen",
  "label": "Home",
  "icon": "Feather/home"
}

However, the icon, label, and name of the current route are also directly accessible from the variable dropdown for your convenience.

Navigating with Route Data

The Navigate Action includes an option for the Destination prop named Custom Route. When selected, it will enable two additional parameters - Route Name and Params.

You can pass the name key from the route data to the Route Name prop and include any navigation params.

PropertyDescription
Route NameA destination route name that is in the app's navigator. Usually a Screen or Navigator name
ParamsNavigation params to send to the destination route. Example: { id: 33 }