android BottomAppBar里面item位置

下面用BottomAppBar做的导航栏
image
下面是代码
<androidx.coordinatorlayout.widget.CoordinatorLayout
android:layout_width="match_parent"
android:layout_height="80dp">

<com.google.android.material.bottomappbar.BottomAppBar

android:layout_gravity="bottom"
app:fabAlignmentMode="center"
android:id="@+id/bottom_app_bar"
app:contentInsetStartWithNavigation="0dp"
style="@style/Widget.MaterialComponents.BottomAppBar.Colored"
app:menu="@menu/draw_menu"
android:layout_width="match_parent"
android:layout_height="wrap_content">

</com.google.android.material.bottomappbar.BottomAppBar>
<com.google.android.material.floatingactionbutton.FloatingActionButton

android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/fab"
app:layout_anchor="@id/bottom_app_bar"/>
</androidx.coordinatorlayout.widget.CoordinatorLayout>
怎么让右边的item平分分布在底部而不是都挤在右边