Skip to content

Commit

Permalink
[FIX/#30] 코드리뷰 반영
Browse files Browse the repository at this point in the history
  • Loading branch information
leeeyubin committed Jan 8, 2024
1 parent aa93ac0 commit 67b3f01
Showing 1 changed file with 11 additions and 10 deletions.
21 changes: 11 additions & 10 deletions presentation/src/main/res/layout/item_dash_board_completed.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:paddingBottom="14dp">
Expand All @@ -23,10 +24,10 @@
android:layout_height="wrap_content"
android:layout_marginStart="16dp"
android:layout_marginTop="16dp"
android:text="굉굉이들이랑 합숙"
android:textColor="@color/gray_300"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
app:layout_constraintTop_toTopOf="parent"
tools:text="굉굉이들이랑 합숙" />


<ImageView
Expand All @@ -47,35 +48,35 @@
android:layout_marginStart="16dp"
android:layout_marginTop="4dp"
android:layout_marginBottom="16dp"
android:text="2024 .03 .24"
android:textColor="@color/gray_300"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintStart_toStartOf="@id/tv_dashboard_trip_title"
app:layout_constraintTop_toBottomOf="@id/tv_dashboard_trip_title" />
app:layout_constraintTop_toBottomOf="@id/tv_dashboard_trip_title"
tools:text="2024 .03 .24" />

<TextView
android:id="@+id/tv_dashboard_date_dash"
style="@style/TextAppearance.Doorip.Detail3.Regular"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginStart="2dp"
android:text="@string/dashboard_tv_dash"
android:textColor="@color/gray_300"
app:layout_constraintBottom_toBottomOf="@id/tv_dashboard_date_start"
app:layout_constraintStart_toEndOf="@id/tv_dashboard_date_start"
app:layout_constraintTop_toTopOf="@id/tv_dashboard_date_start" />
app:layout_constraintTop_toTopOf="@id/tv_dashboard_date_start"
tools:text="@string/dashboard_tv_dash" />

<TextView
android:id="@+id/tv_dashboard_date_end"
style="@style/TextAppearance.Doorip.Detail3.Regular"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginStart="2dp"
android:text="2024 .03 .31"
android:textColor="@color/gray_300"
app:layout_constraintBottom_toBottomOf="@id/tv_dashboard_date_dash"
app:layout_constraintStart_toEndOf="@id/tv_dashboard_date_dash"
app:layout_constraintTop_toTopOf="@id/tv_dashboard_date_dash" />
app:layout_constraintTop_toTopOf="@id/tv_dashboard_date_dash"
tools:text="2024 .03 .31" />

<androidx.constraintlayout.widget.ConstraintLayout
android:id="@+id/layout_dashboard_day_completed"
Expand All @@ -94,10 +95,10 @@
android:layout_height="wrap_content"
android:paddingHorizontal="8dp"
android:paddingVertical="2dp"
android:text="@string/dashboard_tv_completed_trip"
android:textColor="@color/gray_200"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
app:layout_constraintTop_toTopOf="parent"
tools:text="@string/dashboard_tv_completed_trip" />

</androidx.constraintlayout.widget.ConstraintLayout>

Expand Down

0 comments on commit 67b3f01

Please sign in to comment.