Skip to content

Commit

Permalink
[ui/UMC-5th-Coumo#53] : 쿠모 로그인 파트 다음버튼 radius 값 조절
Browse files Browse the repository at this point in the history
  • Loading branch information
psw9428 committed Feb 16, 2024
1 parent 44fab3c commit 1951616
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 2 deletions.
5 changes: 5 additions & 0 deletions app/src/main/res/drawable/shape_login_next_btn_radius.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<corners
android:radius="6dp"/>
</shape>
4 changes: 3 additions & 1 deletion app/src/main/res/layout/fragment_login.xml
Original file line number Diff line number Diff line change
Expand Up @@ -81,11 +81,13 @@

<Button
android:id="@+id/btn_login"
android:layout_width="wrap_content"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="start"
android:backgroundTint="@color/main"
android:textColor="@color/font_button_main"
android:background="@drawable/shape_login_next_btn_radius"
android:layout_marginHorizontal="20dp"
android:text="@{viewModel.loginAsCustomer ? @string/login_as_customer : @string/login_as_owner}"
app:layout_constraintBottom_toBottomOf="@id/linear_register"
app:layout_constraintEnd_toEndOf="parent"
Expand Down
4 changes: 3 additions & 1 deletion app/src/main/res/layout/fragment_select_login_as.xml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,8 @@
android:layout_height="wrap_content"
android:text="일반 고객 로그인"
android:textSize="16sp"
android:layout_marginTop="24dp"
android:background="@drawable/shape_login_next_btn_radius"
android:layout_marginTop="57dp"
android:layout_marginHorizontal="20dp"
app:layout_constraintTop_toBottomOf="@id/tv_select_user_type"
app:layout_constraintStart_toStartOf="parent"
Expand All @@ -63,6 +64,7 @@
android:layout_height="wrap_content"
android:text="사장님 로그인"
android:textSize="16sp"
android:background="@drawable/shape_login_next_btn_radius"
android:layout_marginHorizontal="20dp"
android:layout_marginTop="10dp"
app:layout_constraintStart_toStartOf="parent"
Expand Down
1 change: 1 addition & 0 deletions app/src/main/res/layout/fragment_sign_up1.xml
Original file line number Diff line number Diff line change
Expand Up @@ -203,6 +203,7 @@
android:layout_marginHorizontal="50dp"
android:layout_marginBottom="30dp"
android:layout_marginTop="20dp"
android:background="@drawable/shape_login_next_btn_radius"
android:text="다음으로" />

</LinearLayout>
Expand Down
1 change: 1 addition & 0 deletions app/src/main/res/layout/fragment_sign_up2.xml
Original file line number Diff line number Diff line change
Expand Up @@ -348,6 +348,7 @@
android:id="@+id/btn_next_sign_up2"
android:layout_width="match_parent"
android:layout_height="50dp"
android:background="@drawable/shape_login_next_btn_radius"
android:text="다음으로"
android:layout_marginTop="50dp"
android:layout_marginHorizontal="30dp"
Expand Down

0 comments on commit 1951616

Please sign in to comment.