login, registrar e tela home adicionados

This commit is contained in:
2026-01-21 10:38:40 +00:00
commit 05308a944e
65 changed files with 1651 additions and 0 deletions

View File

@@ -0,0 +1,41 @@
<com.google.android.material.card.MaterialCardView
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="160dp"
android:layout_height="100dp"
android:layout_margin="8dp"
app:cardCornerRadius="16dp"
app:cardElevation="4dp">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:padding="16dp">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Despesas"
android:textColor="#666666" />
<ImageView
android:layout_width="32dp"
android:layout_height="32dp"
android:layout_alignParentEnd="true"
android:src="@drawable/redarrow" />
</RelativeLayout>
<TextView
android:id="@+id/tvDespesasValor"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="8dp"
android:text="€150.50"
android:textColor="#D32F2F"
android:textSize="22sp"
android:textStyle="bold" />
</LinearLayout>
</com.google.android.material.card.MaterialCardView>