<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:orientation="vertical"
    tools:application=".FlairBottomSheetFragment">

    <ProgressBar
        android:id="@+id/progress_bar_flair_bottom_sheet_fragment"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_margin="36dp"
        android:layout_gravity="center" />

    <TextView
        android:id="@+id/error_text_view_flair_bottom_sheet_fragment"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="center"
        android:gravity="center"
        android:padding="48dp"
        android:visibility="gone"
        android:textSize="?attr/font_default"
        android:fontFamily="?attr/font_family" />

    <androidx.recyclerview.widget.RecyclerView
        android:id="@+id/recycler_view_bottom_sheet_fragment"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        app:layoutManager="ml.docilealligator.infinityforreddit.customviews.LinearLayoutManagerBugFixed" />

</LinearLayout>