quero fazer o fire base agora

This commit is contained in:
2026-02-03 10:39:29 +00:00
parent ff725c6c1f
commit e19e8237f3
707 changed files with 37441 additions and 53653 deletions

View File

@@ -27,5 +27,54 @@
app:iconGravity="textStart"
android:layout_marginBottom="32dp"/>
<!-- Triage AI removed -->
<View
android:layout_width="match_parent"
android:layout_height="1dp"
android:background="#CCCCCC"
android:layout_marginBottom="24dp"/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Triagem com Inteligência Artificial"
android:textSize="20sp"
android:textStyle="bold"
android:textColor="@color/primary_color"
android:layout_marginBottom="16dp"/>
<com.google.android.material.textfield.TextInputLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="Descreva o que está a sentir..."
android:layout_marginBottom="16dp"
style="@style/Widget.MaterialComponents.TextInputLayout.OutlinedBox">
<com.google.android.material.textfield.TextInputEditText
android:id="@+id/input_symptoms"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:inputType="textCapSentences|textMultiLine"
android:minLines="3"
android:gravity="top|start"/>
</com.google.android.material.textfield.TextInputLayout>
<com.google.android.material.button.MaterialButton
android:id="@+id/button_ai_triage"
android:layout_width="match_parent"
android:layout_height="60dp"
android:text="Analisar Sintomas"
android:textSize="16sp"
app:cornerRadius="8dp"
android:layout_marginBottom="24dp"/>
<TextView
android:id="@+id/text_ai_result"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textSize="16sp"
android:textColor="@android:color/black"
android:padding="16dp"
android:background="#F5F5F5"
android:visibility="gone"/>
</LinearLayout>