forked from GitHub-Mirror/riotX-android
Reactions: Display existing reactions below the message
- Reaction Button Bellow the message - Upgrade to constraint layout 2.0.0 beta (for Constraint Helpers / Flow) - Added tap on member name action - Cleaning
This commit is contained in:
13
vector/src/main/res/drawable/rounded_rect_shape.xml
Normal file
13
vector/src/main/res/drawable/rounded_rect_shape.xml
Normal file
@ -0,0 +1,13 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle">
|
||||
|
||||
<size android:width="40dp" android:height="22dp"/>
|
||||
|
||||
<solid android:color="@color/light_blue_grey" />
|
||||
|
||||
<stroke android:width="1dp" android:color="@color/accent_color_light" />
|
||||
|
||||
<corners android:radius="20dp" />
|
||||
|
||||
</shape>
|
13
vector/src/main/res/drawable/rounded_rect_shape_off.xml
Normal file
13
vector/src/main/res/drawable/rounded_rect_shape_off.xml
Normal file
@ -0,0 +1,13 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle">
|
||||
|
||||
<size android:width="40dp" android:height="22dp"/>
|
||||
|
||||
<solid android:color="@color/light_blue_grey" />
|
||||
|
||||
<stroke android:width="1dp" android:color="@color/list_divider_color_light" />
|
||||
|
||||
<corners android:radius="20dp" />
|
||||
|
||||
</shape>
|
Reference in New Issue
Block a user