Skip to content

Commit

Permalink
design: 초대 코드 아이템 ui 구현
Browse files Browse the repository at this point in the history
  • Loading branch information
kimhm0728 committed Jan 17, 2025
1 parent fde7403 commit 3317b3d
Showing 1 changed file with 44 additions and 0 deletions.
44 changes: 44 additions & 0 deletions android/app/src/main/res/layout/item_invite_code_copy.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
<?xml version="1.0" encoding="utf-8"?>
<layout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto">

<data>

</data>

<androidx.constraintlayout.widget.ConstraintLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginStart="32dp"
android:layout_marginEnd="22dp">

<TextView
android:id="@+id/tv_invite_code_guide"
style="@style/pretendard_regular_14"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginBottom="8dp"
android:text="@string/detail_meeting_invite_code_guide"
app:layout_constraintBottom_toTopOf="@id/btn_invite_code_copy"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />

<TextView
android:id="@+id/btn_invite_code_copy"
style="@style/pretendard_regular_14"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/rectangle_radius_15"
android:backgroundTint="@color/gray_300"
android:paddingHorizontal="14dp"
android:paddingVertical="10dp"
android:text="@string/detail_meeting_invite_code_copy"
android:textColor="@color/gray_500"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@id/tv_invite_code_guide" />

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

0 comments on commit 3317b3d

Please sign in to comment.