-
Notifications
You must be signed in to change notification settings - Fork 0
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
base: develop-xml
Are you sure you want to change the base?
Conversation
There was a problem hiding this 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 | ||
|
||
// |
There was a problem hiding this comment.
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!! |
There was a problem hiding this comment.
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!! |
There was a problem hiding this comment.
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 이름에 맞춰서 이렇게 작성하면 좋을 거 같아요!!
x7.mp4