<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout android:padding="24.0dip" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_margin="32.0dip" android:minWidth="@dimen/modern_dialog_min_width"
  xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto">
    <com.google.android.libraries.youtube.rendering.ui.spec.typography.YouTubeAppCompatTextView android:textColor="?ytTextPrimary" android:layout_gravity="center_vertical" android:id="@id/custom_confirm_dialog_title" android:layout_width="fill_parent" android:layout_height="wrap_content" app:layout_constrainedWidth="true" app:layout_constraintEnd_toEndOf="parent" app:layout_constraintHorizontal_bias="0.0" app:layout_constraintStart_toStartOf="parent" app:layout_constraintTop_toTopOf="parent" />
    <ScrollView android:id="@id/custom_confirm_dialog_message_scroll_view" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_marginTop="8.0dip" app:layout_constrainedHeight="true" app:layout_constrainedWidth="true" app:layout_constraintBottom_toTopOf="@id/bottom_button_row" app:layout_constraintEnd_toEndOf="parent" app:layout_constraintStart_toStartOf="parent" app:layout_constraintTop_toBottomOf="@id/custom_confirm_dialog_title" app:layout_goneMarginTop="0.0dip">
        <com.google.android.libraries.youtube.rendering.ui.spec.typography.YouTubeAppCompatTextView android:textColor="?ytTextPrimary" android:gravity="start" android:id="@id/custom_confirm_dialog_message" android:layout_width="fill_parent" android:layout_height="wrap_content" />
    </ScrollView>
    <com.google.android.flexbox.FlexboxLayout android:id="@id/bottom_button_row" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_marginTop="16.0dip" app:dividerDrawable="@drawable/modern_dialog_button_spacer" app:flexDirection="row" app:flexWrap="wrap" app:justifyContent="space_between" app:layout_constraintBottom_toBottomOf="parent" app:layout_constraintEnd_toEndOf="parent" app:layout_constraintStart_toStartOf="parent" app:layout_constraintTop_toBottomOf="@id/custom_confirm_dialog_message_scroll_view" app:showDivider="middle">
        <com.google.android.libraries.youtube.rendering.ui.spec.typography.YouTubeAppCompatTextView android:gravity="center" android:id="@id/custom_confirm_dialog_cancel_button" android:visibility="gone" android:layout_width="wrap_content" android:layout_height="@dimen/button_size_medium_height" android:textAllCaps="false" android:paddingHorizontal="12.0dip" app:layout_flexGrow="1.0" app:layout_flexShrink="0.0" />
        <com.google.android.libraries.youtube.rendering.ui.spec.typography.YouTubeAppCompatTextView android:gravity="center" android:id="@id/custom_confirm_dialog_confirm_button" android:visibility="gone" android:layout_width="wrap_content" android:layout_height="@dimen/button_size_medium_height" android:textAllCaps="false" android:paddingHorizontal="12.0dip" app:layout_flexGrow="1.0" app:layout_flexShrink="0.0" />
    </com.google.android.flexbox.FlexboxLayout>
</androidx.constraintlayout.widget.ConstraintLayout>
