30 lines
995 B
XML
30 lines
995 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||
android:layout_width="match_parent"
|
||
android:layout_height="match_parent"
|
||
android:animateLayoutChanges="true"
|
||
android:background="@color/background_primary"
|
||
android:orientation="vertical">
|
||
|
||
<include
|
||
layout="@layout/app_bar_general"
|
||
android:layout_width="match_parent"
|
||
android:layout_height="wrap_content" />
|
||
|
||
<FrameLayout
|
||
android:layout_width="match_parent"
|
||
android:layout_height="0dp"
|
||
android:layout_weight="1"
|
||
android:background="@color/background_primary">
|
||
|
||
<TextView
|
||
android:layout_width="wrap_content"
|
||
android:layout_height="wrap_content"
|
||
android:layout_gravity="center"
|
||
android:gravity="center"
|
||
android:text="Welcome to DashPay\nLet\’s Get Started"
|
||
android:textSize="22sp" />
|
||
|
||
</FrameLayout>
|
||
|
||
</LinearLayout> |