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

<ViewFlipper
  xmlns:android="http://schemas.android.com/apk/res/android"
  xmlns:app="http://schemas.android.com/apk/res-auto"
  xmlns:tools="http://schemas.android.com/tools"
  android:id="@+id/tips_promo_bottom_sheet_view_flipper"
  android:layout_width="match_parent"
  android:layout_height="wrap_content"
  android:measureAllChildren="false"
  android:inAnimation="@anim/view_flipper_fade_in"
  android:outAnimation="@anim/view_flipper_fade_out"
  android:orientation="vertical">

    <include
        android:id="@+id/tips_promo_main_sheet"
        layout="@layout/tips_promo_main_sheet" />
    <include
        android:id="@+id/tips_promo_detail_sheet"
        layout="@layout/tips_promo_detail_sheet" />
</ViewFlipper>