<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout 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:layout_width="match_parent"
  android:layout_height="match_parent"
  android:background="#0068FF"
  >
  <ImageView
    android:id="@+id/splashOnusLogo"
    android:layout_width="match_parent"
    android:layout_height="24dp"
    android:layout_marginTop="46dp"
    android:src="@drawable/ready_splash_onus_logo"
    app:layout_constraintTop_toTopOf="parent"
    app:layout_constraintStart_toStartOf="parent"
    app:layout_constraintEnd_toEndOf="parent"
    android:contentDescription="TODO" />

  <ImageView
    android:id="@+id/splashText"
    android:layout_width="236dp"
    android:layout_height="80dp"
    app:flow_horizontalAlign="center"
    app:flow_verticalAlign="center"
    android:layout_marginTop="64dp"
    android:src="@drawable/ready_splash_text"
    app:layout_constraintTop_toBottomOf="@+id/splashOnusLogo"
    app:layout_constraintBottom_toTopOf="@+id/splashBackground"
    app:layout_constraintStart_toStartOf="parent"
    app:layout_constraintEnd_toEndOf="parent"
    android:contentDescription="TODO"
    />

  <ImageView
    android:id="@+id/splashBackground"
    android:layout_width="match_parent"
    android:layout_height="0dp"
    android:scaleType="fitXY"
    android:src="@drawable/ready_splash_background"
    app:layout_constraintBottom_toBottomOf="parent"
    app:layout_constraintEnd_toEndOf="parent"
    app:layout_constraintHeight_percent="0.6"
    app:layout_constraintStart_toStartOf="parent" />
  <ImageView
    android:id="@+id/splashLogo"
    android:layout_width="match_parent"
    android:layout_height="29dp"
    android:layout_marginBottom="46dp"
    android:src="@drawable/ready_splash_logo"
    app:layout_constraintBottom_toBottomOf="parent"
    app:layout_constraintEnd_toEndOf="parent"
    app:layout_constraintStart_toStartOf="parent"
    />

</androidx.constraintlayout.widget.ConstraintLayout>
