Skip to content

Commit

Permalink
Merge pull request #39 from ttoklip/feat/#15_첫화면로그인_구현
Browse files Browse the repository at this point in the history
Feat/#15 첫화면로그인 구현
  • Loading branch information
hangunhee39 authored Feb 6, 2024
2 parents eb32739 + 96fe60d commit de83db4
Show file tree
Hide file tree
Showing 12 changed files with 23 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@ class Signup5Fragment: BaseFragment<FragmentSignup5Binding>(R.layout.fragment_si
}
binding.signup5NextBtn.setOnClickListener {
startActivity(Intent(activity, MainActivity::class.java))
activity.finish()
}
}

Expand Down
3 changes: 2 additions & 1 deletion app/src/main/res/layout/activity_direct_location.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@

<androidx.constraintlayout.widget.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
android:layout_height="match_parent"
android:background="@color/white">

<ImageButton
android:id="@+id/direct_location_back_ib"
Expand Down
3 changes: 2 additions & 1 deletion app/src/main/res/layout/activity_location.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@

<androidx.constraintlayout.widget.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
android:layout_height="match_parent"
android:background="@color/white">

<ImageButton
android:id="@+id/location_back_ib"
Expand Down
3 changes: 2 additions & 1 deletion app/src/main/res/layout/activity_login.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@

<androidx.constraintlayout.widget.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
android:layout_height="match_parent"
android:background="@color/white">

<androidx.constraintlayout.widget.ConstraintLayout
android:layout_width="wrap_content"
Expand Down
3 changes: 2 additions & 1 deletion app/src/main/res/layout/activity_signup.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@

<androidx.constraintlayout.widget.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
android:layout_height="match_parent"
android:background="@color/white">

<ImageButton
android:id="@+id/signup_back_ib"
Expand Down
3 changes: 2 additions & 1 deletion app/src/main/res/layout/fragment_intro.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@

<androidx.constraintlayout.widget.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
android:layout_height="wrap_content"
android:background="@color/white">

<TextView
android:id="@+id/item_intro_title_tv"
Expand Down
3 changes: 2 additions & 1 deletion app/src/main/res/layout/fragment_signup1.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@

<androidx.constraintlayout.widget.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
android:layout_height="match_parent"
android:background="@color/white">

<LinearLayout
android:id="@+id/signup1_signupbox_ll"
Expand Down
3 changes: 2 additions & 1 deletion app/src/main/res/layout/fragment_signup2.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@

<androidx.constraintlayout.widget.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
android:layout_height="match_parent"
android:background="@color/white">

<LinearLayout
android:id="@+id/signup2_signupbox_ll"
Expand Down
3 changes: 2 additions & 1 deletion app/src/main/res/layout/fragment_signup3.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@

<androidx.constraintlayout.widget.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
android:layout_height="match_parent"
android:background="@color/white">

<LinearLayout
android:id="@+id/signup3_terms_ll"
Expand Down
3 changes: 2 additions & 1 deletion app/src/main/res/layout/fragment_signup4.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent">
app:layout_constraintTop_toTopOf="parent"
android:background="@color/white">

<androidx.constraintlayout.widget.ConstraintLayout
android:layout_width="match_parent"
Expand Down
3 changes: 2 additions & 1 deletion app/src/main/res/layout/fragment_signup5.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@

<androidx.constraintlayout.widget.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
android:layout_height="match_parent"
android:background="@color/white">

<LinearLayout
android:id="@+id/signup5_signupbox_ll"
Expand Down
3 changes: 2 additions & 1 deletion app/src/main/res/layout/fragment_signup_term.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@

<androidx.constraintlayout.widget.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
android:layout_height="match_parent"
android:background="@color/white">

<androidx.constraintlayout.widget.ConstraintLayout
android:layout_width="312dp"
Expand Down

0 comments on commit de83db4

Please sign in to comment.