chromium/chrome/browser/touch_to_fill/password_manager/no_passkeys/internal/android/java/res/layout/no_passkeys_bottom_sheet.xml

<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright 2023 The Chromium Authors
      Use of this source code is governed by a BSD-style license that can be
      found in the LICENSE file. -->

<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/no_passkeys_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" />

  <TextView
      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"
      android:text="@string/no_passkeys_sheet_title"
      android:screenReaderFocusable="true"/>

  <TextView
      android:id="@+id/no_passkeys_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:text="@string/no_passkeys_sheet_subtitle"
      android:textAppearance="@style/TextAppearance.TextMedium.Secondary"
      android:screenReaderFocusable="true"/>

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginBottom="20dp"
        android:layout_marginHorizontal="@dimen/ttf_sheet_padding"
        android:orientation="horizontal">

      <org.chromium.ui.widget.ButtonCompat
          android:id="@+id/no_passkeys_use_another_device_button"
          android:text="@string/no_passkeys_sheet_use_another_device"
          android:layout_width="wrap_content"
          android:layout_height="match_parent"
          android:layout_gravity="start"
          android:layout_weight="1"
          style="@style/TextButton"/>

      <Space
          android:layout_width="0dp"
          android:layout_height="match_parent"
          android:layout_weight="2"/>

      <org.chromium.ui.widget.ButtonCompat
          android:id="@+id/no_passkeys_ok_button"
          android:text="@string/no_passkeys_sheet_ok"
          android:layout_width="wrap_content"
          android:layout_height="match_parent"
          android:layout_weight="1"
          style="style/FilledButton"/>

    </LinearLayout>
</LinearLayout>