* reworking splash screen for new brand modifying layout * removed background_splash file and reworked launch_screen file instead * simplified to reduce number of changed files * updated release launch screen as well * reworked to simplify changes * removed iOS splash background image not being used for this PR * added support for dark mode * tweak to splash background to center better * update fastlane * Replace iOS Splash Screen release assets * Replace Android Splash Screen release assets * Replace iOS release LaunchScreen.storyboard Co-authored-by: Elias Nahum <nahumhbl@gmail.com>
32 lines
1.3 KiB
XML
32 lines
1.3 KiB
XML
<?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="@color/splashscreen_bg"
|
|
android:orientation="vertical">
|
|
|
|
<ImageView
|
|
android:id="@+id/splashBackgroundImage"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:scaleType="centerCrop"
|
|
android:src="@drawable/splash_background"
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
app:layout_constraintTop_toTopOf="parent" />
|
|
|
|
<ImageView
|
|
android:id="@+id/splashIcon"
|
|
android:layout_width="96dp"
|
|
android:layout_height="96dp"
|
|
android:contentDescription="@string/app_name"
|
|
android:src="@drawable/splash"
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
app:layout_constraintLeft_toLeftOf="parent"
|
|
app:layout_constraintRight_toRightOf="parent"
|
|
app:layout_constraintTop_toTopOf="parent" />
|
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|