Fix bug, improve UI

This commit is contained in:
Nezumi
2023-03-08 15:34:17 +07:00
parent 2cf16dbf98
commit 400ed79536
5 changed files with 6 additions and 2 deletions
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<solid android:color="@color/primaryDark" />
<solid android:color="@color/yellow" />
<corners android:topLeftRadius="16dp" android:topRightRadius="16dp"/>
</shape>
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<solid android:color="@color/primaryDark"/>
<solid android:color="@color/yellow"/>
<corners android:radius="10dp"/>
</shape>
@@ -249,6 +249,8 @@
<Button
android:id="@+id/rating_button"
android:text="Rating"
android:backgroundTint="@color/yellow"
android:textColor="@color/black"
android:fontFamily="@font/opensans"
android:textAllCaps="false"
android:layout_width="wrap_content"
+1
View File
@@ -42,6 +42,7 @@
app:srb_starWidth="12dp"
app:srb_starHeight="12dp"
app:srb_numStars="5"
app:srb_scrollable="false"
app:layout_constraintTop_toBottomOf="@id/user_name_text_view"
app:layout_constraintStart_toStartOf="parent"
android:layout_marginStart="-5dp"
+1
View File
@@ -12,4 +12,5 @@
<color name="primaryDark">#1EAE94</color>
<color name="green">#A9d440</color>
<color name="darkGreen">#004d40</color>
<color name="yellow">#FFEB3B</color>
</resources>