forgot to commit the new bubble Shape Drawables

Maxime V created

Change summary

src/main/res/drawable/message_bubble_received.xml | 19 +++++++++++++++++
src/main/res/drawable/message_bubble_sent.xml     | 19 +++++++++++++++++
2 files changed, 38 insertions(+)

Detailed changes

src/main/res/drawable/message_bubble_received.xml 🔗

@@ -0,0 +1,19 @@
+<?xml version="1.0" encoding="utf-8"?>
+<shape xmlns:android="http://schemas.android.com/apk/res/android"
+    android:shape="rectangle">
+    <corners
+        android:radius="0dp"
+        android:bottomLeftRadius="15dp"
+        android:bottomRightRadius="15dp"
+        android:topLeftRadius="5dp"
+        android:topRightRadius="15dp" />
+    <padding
+        android:bottom="0dp"
+        android:left="10dp"
+        android:right="10dp"
+        android:top="0dp" />
+    <size
+        android:width="10dp"
+        android:height="10dp" />
+    <solid android:color="@color/perpy" />
+</shape>

src/main/res/drawable/message_bubble_sent.xml 🔗

@@ -0,0 +1,19 @@
+<?xml version="1.0" encoding="utf-8"?>
+<shape xmlns:android="http://schemas.android.com/apk/res/android"
+    android:shape="rectangle">
+    <corners
+        android:radius="0dp"
+        android:bottomLeftRadius="15dp"
+        android:bottomRightRadius="5dp"
+        android:topLeftRadius="15dp"
+        android:topRightRadius="15dp" />
+    <padding
+        android:bottom="0dp"
+        android:left="10dp"
+        android:right="10dp"
+        android:top="0dp" />
+    <size
+        android:width="10dp"
+        android:height="10dp" />
+    <solid android:color="@color/perpy" />
+</shape>