chromium/chrome/browser/touch_to_fill/password_manager/password_generation/android/internal/java/res/layout/touch_to_fill_password_generation.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="vertical">
  <ImageView
      android:id="@+id/drag_handlebar"
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:layout_gravity="center_horizontal"
      android:layout_marginHorizontal="@dimen/ttf_sheet_padding"
      android:layout_marginVertical="@dimen/ttf_drag_handlebar_margin"
      android:importantForAccessibility="no"
      app:srcCompat="@drawable/drag_handlebar" />
  <org.chromium.components.browser_ui.widget.FadingEdgeScrollView
      android:layout_width="match_parent"
      android:layout_height="0dp"
      android:layout_weight="1">
    <LinearLayout
        android:orientation="vertical"
        android:layout_width="match_parent"
        android:layout_height="wrap_content">
      <ImageView
          android:id="@+id/touch_to_fill_sheet_header_image"
          android:layout_width="@dimen/touch_to_fill_favicon_size_modern"
          android:layout_height="@dimen/touch_to_fill_favicon_size_modern"
          android:layout_gravity="center_horizontal"
          android:layout_marginVertical="16dp"
          android:importantForAccessibility="no" />
      <LinearLayout
          android:layout_width="match_parent"
          android:layout_height="wrap_content"
          android:orientation="vertical"
          android:focusable="true">
        <TextView
            android:id="@+id/touch_to_fill_sheet_title"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_gravity="center_horizontal"
            android:layout_marginHorizontal="@dimen/ttf_sheet_padding"
            android:textAlignment="center"
            android:textAppearance="@style/TextAppearance.Headline.Primary"/>
        <TextView
            android:id="@+id/touch_to_fill_sheet_subtitle"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_gravity="center_horizontal"
            android:layout_marginHorizontal="@dimen/ttf_sheet_padding"
            android:layout_marginBottom="24dp"
            android:textAlignment="center"
            android:textAppearance="@style/TextAppearance.TextMedium.Secondary"/>
      </LinearLayout>
      <TextView
          android:id="@+id/password"
          android:layout_width="match_parent"
          android:layout_height="52dp"
          android:layout_marginHorizontal="@dimen/ttf_sheet_padding"
          android:layout_marginBottom="24dp"
          android:gravity="center"
          android:background="@drawable/touch_to_fill_credential_background_modern_rounded_all"
          android:singleLine="true"
          android:textAppearance="@style/TextAppearance.TextMedium.Primary"
          android:focusable="true"/>
      <org.chromium.ui.widget.ButtonCompat
          android:id="@+id/use_password_button"
          android:text="@string/password_generation_bottom_sheet_use_password_button"
          android:layout_width="match_parent"
          android:layout_height="wrap_content"
          android:layout_marginBottom="14dp"
          android:layout_marginHorizontal="@dimen/ttf_sheet_padding"
          android:gravity="center"
          style="@style/FilledButton"/>
      <org.chromium.ui.widget.ButtonCompat
          android:id="@+id/reject_password_button"
          android:text="@string/password_generation_bottom_sheet_dismiss_button"
          android:layout_width="match_parent"
          android:layout_height="wrap_content"
          android:layout_marginBottom="20dp"
          android:layout_marginHorizontal="@dimen/ttf_sheet_padding"
          android:gravity="center"
          style="@style/TextButton"/>
    </LinearLayout>
  </org.chromium.components.browser_ui.widget.FadingEdgeScrollView>
</LinearLayout>