Skip to content

Commit

Permalink
#40 [ui] button 그림자 없애기
Browse files Browse the repository at this point in the history
  • Loading branch information
emjayMJkim committed Jan 13, 2024
1 parent b84055d commit b7ab7c1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -130,6 +130,7 @@
android:background="@{routineViewModel.isRoutineBtnEnabled ? @drawable/shape_main1_fill_12_rect : @drawable/shape_gray200_fill_12_rect}"
android:enabled="@{routineViewModel.isRoutineBtnEnabled ? true : false}"
android:clickable="@{routineViewModel.isRoutineBtnEnabled ? true : false}"
android:outlineProvider="none"
app:layout_constraintTop_toTopOf="@id/btn_onboarding_routine_back_theme"
app:layout_constraintBottom_toBottomOf="@id/btn_onboarding_routine_back_theme"
app:layout_constraintEnd_toEndOf="parent"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@
android:background="@{themeViewModel.themeBtnEnabled ? @drawable/shape_main1_fill_12_rect : @drawable/shape_gray200_fill_12_rect}"
android:enabled="@{themeViewModel.themeBtnEnabled ? true : false}"
android:clickable="@{themeViewModel.themeBtnEnabled ? true : false}"
android:outlineProvider="none"
android:layout_marginHorizontal="20dp"
android:layout_marginBottom="34dp"
app:layout_constraintStart_toStartOf="parent"
Expand Down

0 comments on commit b7ab7c1

Please sign in to comment.