Skip to content

Commit

Permalink
refactor: xml 파일 호출 순서 맞추기
Browse files Browse the repository at this point in the history
  • Loading branch information
SeongHoonC committed Oct 23, 2023
1 parent 740ac54 commit d1f7e86
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -93,11 +93,11 @@
android:layout_height="wrap_content"
android:layout_marginHorizontal="16dp"
android:layout_marginVertical="28dp"
android:onClick="@{() -> onReserve.invoke(selectedTicketTypeId)}"
android:text="@string/ticket_reserve_tv_btn_reserve_ticket"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent" />
app:layout_constraintStart_toStartOf="parent"
app:onSingleClick="@{() -> onReserve.invoke(selectedTicketTypeId)}" />

</androidx.constraintlayout.widget.ConstraintLayout>
</layout>
Original file line number Diff line number Diff line change
Expand Up @@ -111,11 +111,11 @@
android:layout_height="wrap_content"
android:layout_marginHorizontal="16dp"
android:layout_marginTop="28dp"
app:onSingleClick="@{() -> stage.onShowStageTickets.invoke(stage.id, stage.startTime)}"
android:text="@string/ticket_reserve_btn_reserve_ticket"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@id/tvAuthGuideStudent" />
app:layout_constraintTop_toBottomOf="@id/tvAuthGuideStudent"
app:onSingleClick="@{() -> stage.onShowStageTickets.invoke(stage.id, stage.startTime)}" />

</androidx.constraintlayout.widget.ConstraintLayout>
</layout>

0 comments on commit d1f7e86

Please sign in to comment.