From 06074c835cf6f73fe4dce7a8a8e3bb9691882b7f Mon Sep 17 00:00:00 2001
From: Thareq Yusuf <thareqmyha@gmail.com>
Date: Wed, 13 Mar 2019 01:05:05 +0700
Subject: [PATCH] add inbox layout

---
 app/src/main/res/layout/inbox_main.xml | 17 +++++++++++++++--
 1 file changed, 15 insertions(+), 2 deletions(-)

diff --git a/app/src/main/res/layout/inbox_main.xml b/app/src/main/res/layout/inbox_main.xml
index b5f50c8..7d05c4c 100644
--- a/app/src/main/res/layout/inbox_main.xml
+++ b/app/src/main/res/layout/inbox_main.xml
@@ -1,7 +1,20 @@
 <?xml version="1.0" encoding="utf-8"?>
-<android.support.constraint.ConstraintLayout
+<LinearLayout
   xmlns:android="http://schemas.android.com/apk/res/android"
   android:layout_width="match_parent"
   android:layout_height="match_parent">
+  <ScrollView
+    android:layout_width="match_parent"
+    android:layout_height="match_parent">
+    <LinearLayout
+      android:layout_width="match_parent"
+      android:layout_height="match_parent"
+      android:orientation="vertical">
+      <androidx.recyclerview.widget.RecyclerView
+        android:layout_width="match_parent"
+        android:layout_height="match_parent"/>
+    </LinearLayout>
+  </ScrollView>
 
-</android.support.constraint.ConstraintLayout>
\ No newline at end of file
+
+</LinearLayout>
\ No newline at end of file
-- 
GitLab