-
Notifications
You must be signed in to change notification settings - Fork 2
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/#31] 탐색 뷰 / 검색 텍스트 필드 클릭 뷰 구현 #40
Conversation
…-field-view-ui # Conflicts: # core/src/main/java/com/terning/core/designsystem/component/textfield/SearchTextField.kt # core/src/main/java/com/terning/core/designsystem/component/textfield/TerningBasicTextField.kt # feature/src/main/java/com/terning/feature/main/MainNavigator.kt # feature/src/main/java/com/terning/feature/search/SearchRoute.kt
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.
탑바 여백 없어진거 축하~
진짜 속도 엄청 빠르네요,, 너무 고생하셨어요!!
}) { | ||
IconButton( | ||
onClick = { | ||
onBackButtonClick.invoke() |
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.
invoke()
를 호출하는 이유가 뭔가요??
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.
빠른 삭제했읍니다.
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.
탑바 여백 없애기 성공한거 개큰박수 드립니다👏🏻👏🏻
@@ -9,15 +10,18 @@ import com.terning.core.designsystem.theme.TerningTheme | |||
|
|||
@Composable | |||
fun SearchTextField( | |||
text: String, | |||
onValueChange: (String) -> Unit, | |||
text: String = "", |
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.
요거 String 기본값 추가하신 이유가 궁금해요!!
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.
BasicTextField 기본 속성이라서 삭제하면 에러가 납니당..!
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.
하루에 피알 두 개..!! 수고 넘넘 많았어요~!!
fun MyPageTopAppBar( | ||
modifier: Modifier, | ||
) { |
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.
LogoTopAppBar에는 Modifier 기본값을 주고, 여기선 안 준 이유가 있나용,,?
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.
꼼꼼하다,..! MyPage에도 추가하겠습니닷
colors = TopAppBarDefaults.topAppBarColors(White), | ||
modifier = Modifier.padding(horizontal = 16.dp) | ||
windowInsets = WindowInsets(0, 0, 0, 0), |
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.
named argument 작성해주세요!!
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.
넹!
Column( | ||
modifier = Modifier | ||
.fillMaxSize() |
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.
위에서 만든 modifier 변수 가져와도 될 것 같아요..!!
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.
이게 사실 효빈님 뷰라서 탑바만 적용한거라 효빈님이 바꿔주신다고합니당ㅎㅎ
|
||
@Serializable | ||
data object SearchProcess : MainTabRoute |
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.
SearchProcess는 바텀바가 없으니까 Route로 해야될 것 같아요!
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.
빠른 변경 하겠읍니다.
…to ui/#31-search-text-field-view-ui
⛳️ Work Description
📸 Screenshot
31.mp4
📢 To Reviewers