46 lines
1.6 KiB
XML
46 lines
1.6 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<androidx.cardview.widget.CardView xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
app:cardCornerRadius="16dp"
|
|
app:cardElevation="1dp"
|
|
app:cardBackgroundColor="@color/white">
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical"
|
|
android:padding="12dp"
|
|
android:gravity="center">
|
|
|
|
<TextView
|
|
android:id="@+id/tvStatIcon"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="🎯"
|
|
android:textSize="20sp"
|
|
android:layout_marginBottom="4dp"/>
|
|
|
|
<TextView
|
|
android:id="@+id/tvStatValue"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="120"
|
|
android:textStyle="bold"
|
|
android:textSize="18sp"
|
|
android:textColor="@color/text_primary"/>
|
|
|
|
<TextView
|
|
android:id="@+id/tvStatLabel"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="Tarefas"
|
|
android:textSize="11sp"
|
|
android:textColor="@color/text_secondary"
|
|
android:textAllCaps="true"
|
|
android:letterSpacing="0.05"/>
|
|
|
|
</LinearLayout>
|
|
</androidx.cardview.widget.CardView>
|