Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[UI/#51] 설정 뷰 / UI 구현 #65

Merged
merged 22 commits into from
Jan 10, 2024
Merged

[UI/#51] 설정 뷰 / UI 구현 #65

merged 22 commits into from
Jan 10, 2024

Conversation

leeeyubin
Copy link
Member

@leeeyubin leeeyubin commented Jan 10, 2024

⛳️ Work Description

  • 설정 UI 구현
  • 회원탈퇴 커스텀 다이얼로그 구현
  • 로그아웃 커스텀 다이얼로그 구현

📸 Screenshot

device-2024-01-10-202953.mp4

📢 To Reviewers

  • 설정 뷰 완료했습니당 나중에 뷰 다 나오면 버튼들 연결할게여

Copy link
Member

@Marchbreeze Marchbreeze left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

아주조하요~

Comment on lines 11 to 12
private lateinit var quitDialog: SettingQuitDialogFragment
private lateinit var logoutDialog: SettingLogoutDialogFragment
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

nullable한 dialog로 초기값 null로 설정해서 전역변수를 생성한 뒤, 생성할때만 실제 객체를 연결해주고, onDestroy때 dissmiss() 해준다면 메모리 누수를 더 방지할 수 있습니다~~
제 투두생성 시 바텀시트 올리는 코드 참고해보시면 좋을듯 !

Comment on lines 44 to 45
private fun initAboutDoorip() {
binding.btnSettingAboutDooripEnter.setOnSingleClickListener {
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

요친구만 네이밍이 달라요 ~

Comment on lines 143 to 153
<TextView
android:id="@+id/btn_setting_service_version_enter"
style="@style/TextAppearance.Doorip.Detail1.Regular"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginEnd="16dp"
android:textColor="@color/gray_300"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintTop_toTopOf="parent"
tools:text="v1.0" />
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

요친구 buildSrc의 version에 있는 1.0 을 활용해서 나중에 버전 업할때 대응 가능하도록 적용시켜주세요!

Copy link
Contributor

@crownjoe crownjoe left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

굿 좋네요~~~ 커스텀 다이얼로그 하느라 수고하셧슴니👍👍👍👍👍👍👍다

Comment on lines 26 to 27
WindowManager.LayoutParams.MATCH_PARENT,
WindowManager.LayoutParams.MATCH_PARENT,
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

요 아이때문에 다이얼로그가 화면 꽉 차게 안나와서 애먹은게 새록새록하네요 ㅎ.ㅎ

WindowManager.LayoutParams.MATCH_PARENT,
WindowManager.LayoutParams.MATCH_PARENT,
)
setBackgroundDrawableResource(R.color.transparent_60)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

뒤에 배경 굿 좋습니다~~

Copy link
Member

@chattymin chattymin left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

너무 잘해서 이런거밖에 달게 없어요~ 아주 굿이에요~

Comment on lines 1 to 6
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<solid android:color="@color/white_000" />
<corners android:radius="2dp" />
</shape>
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

네이밍 참고해주세용~~~~~~~ rect_2입니다 우하하

@leeeyubin leeeyubin merged commit 70e0c49 into develop Jan 10, 2024
1 check passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

[UI] 설정 뷰 / UI 구현
4 participants