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

[feat] repository 생성 #9

Open
wants to merge 1 commit into
base: develop-xml
Choose a base branch
from
Open

[feat] repository 생성 #9

wants to merge 1 commit into from

Conversation

twogarlic
Copy link
Collaborator

x7.mp4

Copy link

@0se0 0se0 left a comment

Choose a reason for hiding this comment

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

수고하셨습니다~~!!
앱잼 파이팅!!

object ApiFactory {
private const val BASE_URL: String = BuildConfig.AUTH_BASE_URL

//
Copy link

Choose a reason for hiding this comment

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

여기 주석 글 없으니까 // 요거 삭제해두 될 거 같아용


class MyPageFragment: Fragment() {
private var _binding: FragmentMypageBinding? = null
private val binding get() = _binding!!
Copy link

Choose a reason for hiding this comment

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

_binding!! 부분 저희 세미나에서 배웠던 것 처럼 이렇게 바꾸면 좋을 거 같아요!!

private val binding: FragmentMyPageBinding
get() = requireNotNull(_binding) { "FragmentMyPageBinding is not initialized" }

class SearchFragment: Fragment() {

private var _binding: FragmentSearchBinding? = null
private val binding get() = _binding!!
Copy link

Choose a reason for hiding this comment

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

private val binding: FragmentMyPageBinding
get() = requireNotNull(_binding) { "FragmentMyPageBinding is not initialized" } 여기도 SearchFragment 이름에 맞춰서 이렇게 작성하면 좋을 거 같아요!!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants