<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/bottom_navigation_bar_container"
    android:layout_width="match_parent"
    android:layout_height="wrap_content">

    <FrameLayout
        android:id="@+id/bottom_navigation_bar_background"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_gravity="bottom">
        
        <View
            android:id="@+id/bottom_navigation_bar_divider"
            android:layout_width="match_parent"
            android:layout_height="1dp"
            android:layout_gravity="top" />

        <View
            android:layout_width="match_parent"
            android:layout_height="@dimen/nav_tab_bar_height"
            android:layout_gravity="bottom" />

    </FrameLayout>

    <FrameLayout
        android:id="@+id/bottom_navigation_bar_react_holder"
        android:layout_width="match_parent"
        android:layout_height="@dimen/nav_tab_bar_height"
        android:layout_gravity="top" />

</FrameLayout>