Skip to content

Commit

Permalink
🎨 Design: λͺ¨μž„ 일정 생성 UI μˆ˜μ •
Browse files Browse the repository at this point in the history
- 생성 μ‹œ 친ꡬ μ΄ˆλŒ€ μ•ˆ 보이게 ν•˜κΈ°

Related to: #347
  • Loading branch information
nahy-512 committed Dec 9, 2024
1 parent 4169a7d commit 8649648
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions app/src/main/res/layout/activity_moim_schedule.xml
Original file line number Diff line number Diff line change
Expand Up @@ -354,6 +354,7 @@
android:layout_height="wrap_content"
android:layout_marginTop="25dp"
android:paddingVertical="3dp"
android:visibility="@{viewModel.moimSchedule.moimId == 0L ? View.GONE : View.VISIBLE }"
android:clickable="@{viewModel.isCurrentUserOwner ? true : false}"
android:textColor="@{viewModel.isCurrentUserOwner ? @color/main_text : @color/text_unselected}"
android:text="@string/moim_schedule_do_friend_invite"
Expand All @@ -366,6 +367,7 @@
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="12dp"
android:visibility="@{viewModel.moimSchedule.moimId == 0L ? View.GONE : View.VISIBLE }"
app:spanCount="3"
app:layoutManager="com.google.android.flexbox.FlexboxLayoutManager"
tools:itemCount="4"
Expand Down Expand Up @@ -399,6 +401,7 @@
android:drawableStart="@drawable/ic_calendar"
android:background="@drawable/bg_basic_outline_btn"
android:textColor="@color/black"
android:visibility="@{viewModel.moimSchedule.moimId == 0L ? View.GONE : View.VISIBLE }"
style="@style/content_regular"/>

<androidx.appcompat.widget.AppCompatTextView
Expand Down

0 comments on commit 8649648

Please sign in to comment.