Кастомизация TabLayout (иконки в одну строку с текстом)
Не могу понять как разместить иконки в одну строку с текстом в TabLayout как показано тут(https://m2.material.io/components/tabs#usage): 
Мой XML-файл:
<com.google.android.material.tabs.TabLayout
android:id="@+id/tabLayoutWorkExample"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:tabIconTint="@color/selector_tab_icon_colors"
app:tabIndicatorColor="@color/blue"
app:tabIndicatorFullWidth="true"
app:tabIndicatorHeight="3dp"
app:tabMode="fixed"
app:tabSelectedTextColor="@color/blue">
<com.google.android.material.tabs.TabItem
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:icon="@drawable/ic_summer"
android:text="@string/Summer" />
<com.google.android.material.tabs.TabItem
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:icon="@drawable/ic_winter"
android:text="@string/Winter" />
</com.google.android.material.tabs.TabLayout>
