-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcongrates_after_verification_pop_up.xml
37 lines (31 loc) · 1.26 KB
/
congrates_after_verification_pop_up.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:gravity="center_horizontal"
android:layout_width="match_parent"
android:layout_height="match_parent">
<ImageView
android:id="@+id/verified_gif"
android:background="@color/colorPrimary"
android:layout_width="match_parent"
android:layout_height="160dp"
android:src="@drawable/account_verified" />
<TextView
android:textColor="@color/colorPrimary"
android:gravity="center_horizontal"
android:layout_margin="10dp"
android:textSize="@dimen/welcome_size"
android:text="Congratulation"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
<TextView
android:gravity="center_horizontal"
android:layout_marginEnd="20dp"
android:layout_marginLeft="20dp"
android:layout_marginRight="20dp"
android:layout_marginStart="20dp"
android:text="Your UNiT account is successfully created. Now you can sell things online."
android:textSize="20sp"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
</LinearLayout>