erro ao realizar a tarefa
This commit is contained in:
@@ -50,6 +50,7 @@
|
||||
|
||||
<androidx.cardview.widget.CardView style="@style/SettingsCard">
|
||||
<LinearLayout android:layout_width="match_parent" android:layout_height="wrap_content" android:orientation="vertical">
|
||||
<include layout="@layout/item_settings_clickable" android:id="@+id/settingEditProfile" />
|
||||
<include layout="@layout/item_settings_clickable" android:id="@+id/settingEmail" />
|
||||
<include layout="@layout/item_settings_clickable" android:id="@+id/settingPassword" />
|
||||
<include layout="@layout/item_settings_switch" android:id="@+id/settingPublicProfile" />
|
||||
|
||||
@@ -175,23 +175,43 @@
|
||||
android:progressDrawable="@drawable/progress_bar_duo" />
|
||||
</LinearLayout>
|
||||
</androidx.cardview.widget.CardView>
|
||||
|
||||
<!-- 3. 🎯 TAREFAS DO DIA -->
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginBottom="12dp"
|
||||
android:text="Tarefas do Dia"
|
||||
android:textColor="@color/text_primary"
|
||||
android:textSize="20sp"
|
||||
android:textStyle="bold" />
|
||||
|
||||
<Button
|
||||
android:id="@+id/btnAddTasks"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="56dp"
|
||||
android:layout_marginBottom="24dp"
|
||||
android:background="@drawable/button_primary"
|
||||
android:text="+ Adicionar Tarefa"
|
||||
android:textAllCaps="false"
|
||||
android:textColor="@color/white"
|
||||
android:textSize="16sp"
|
||||
android:textStyle="bold"
|
||||
app:backgroundTint="@null" />
|
||||
|
||||
<LinearLayout
|
||||
android:id="@+id/tasksContainer"
|
||||
android:id="@+id/layoutTasksSection"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginBottom="16dp"
|
||||
android:orientation="vertical" />
|
||||
android:orientation="vertical"
|
||||
android:visibility="gone">
|
||||
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginBottom="12dp"
|
||||
android:text="Tarefas do Dia"
|
||||
android:textColor="@color/text_primary"
|
||||
android:textSize="20sp"
|
||||
android:textStyle="bold" />
|
||||
|
||||
<androidx.recyclerview.widget.RecyclerView
|
||||
android:id="@+id/rvTasks"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginBottom="16dp"
|
||||
android:nestedScrollingEnabled="false" />
|
||||
</LinearLayout>
|
||||
|
||||
<TextView
|
||||
android:id="@+id/tvNoTasksIncentive"
|
||||
@@ -398,19 +418,6 @@
|
||||
</LinearLayout>
|
||||
</androidx.cardview.widget.CardView>
|
||||
|
||||
<!-- 8. ➕ BOTÃO ADICIONAR TAREFA -->
|
||||
<Button
|
||||
android:id="@+id/btnAddTasks"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="56dp"
|
||||
android:layout_marginBottom="32dp"
|
||||
android:background="@drawable/button_primary"
|
||||
android:text="+ Adicionar Tarefa"
|
||||
android:textAllCaps="false"
|
||||
android:textColor="@color/white"
|
||||
android:textSize="16sp"
|
||||
android:textStyle="bold"
|
||||
app:backgroundTint="@null" />
|
||||
|
||||
</LinearLayout>
|
||||
</androidx.core.widget.NestedScrollView>
|
||||
|
||||
@@ -9,7 +9,7 @@
|
||||
android:layout_height="wrap_content"
|
||||
android:hint="Search..." />
|
||||
|
||||
<androidx.recyclerview.widget.RecyclerView
|
||||
<ListView
|
||||
android:id="@+id/recycler_view"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
|
||||
@@ -11,7 +11,7 @@
|
||||
<item name="colorOnSecondary">@color/background_light</item>
|
||||
<!-- Status bar color. -->
|
||||
<item name="android:statusBarColor">@color/background_light</item>
|
||||
<item name="android:windowLightStatusBar" tools:targetApi="m">false</item>
|
||||
<item name="android:windowLightStatusBar" tools:targetApi="M">false</item>
|
||||
<!-- Customize your theme here. -->
|
||||
<item name="android:windowBackground">@color/background_light</item>
|
||||
</style>
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<resources>
|
||||
<item name="nodeCircle" type="id">circle</item>
|
||||
<item name="nodeDayInitial" type="id">dayInitial</item>
|
||||
<item name="nodeDayLabel" type="id">nodeDayLabel</item>
|
||||
<item name="nodeProgress" type="id">nodeProgress</item>
|
||||
<item name="nodeCircle" type="id" />
|
||||
<item name="nodeDayInitial" type="id" />
|
||||
<item name="nodeDayLabel" type="id" />
|
||||
<item name="nodeProgress" type="id" />
|
||||
</resources>
|
||||
@@ -11,7 +11,7 @@
|
||||
<item name="colorOnSecondary">#11181C</item>
|
||||
<!-- Status bar color. -->
|
||||
<item name="android:statusBarColor">#F9FAFB</item>
|
||||
<item name="android:windowLightStatusBar" tools:targetApi="m">true</item>
|
||||
<item name="android:windowLightStatusBar" tools:targetApi="M">true</item>
|
||||
<!-- Customize your theme here. -->
|
||||
<item name="android:windowBackground">#F9FAFB</item>
|
||||
</style>
|
||||
|
||||
Reference in New Issue
Block a user