-
Notifications
You must be signed in to change notification settings - Fork 1
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/#41] 탐색 뷰 / 검색 결과 뷰 구현 #44
Merged
Merged
Changes from all commits
Commits
Show all changes
12 commits
Select commit
Hold shift + click to select a range
eb44238
[FEAT/#31] SearchProcessRoute 생성
arinming 04aab33
Merge remote-tracking branch 'origin/develop' into ui/#31-search-text…
arinming eef2bee
[FEAT/#31] SearchProcessScreen으로 이동
arinming e9f0e90
[FEAT/#31] SearchProcessScreen UI 구현
arinming e5e0099
Merge remote-tracking branch 'origin/develop' into ui/#31-search-text…
arinming 9b856f5
[FEAT/#31] TopBar 여백 수정
arinming 35e4462
[FEAT/#31] 여백 터치시 키보드 숨기기
arinming db3154b
[FEAT/#31] BackButton Navigation 구현
arinming a4673e2
[FEAT/#41] 텍스트 필드 완료 버튼 터치시 검색 결과 화면으로 이동
arinming bbddbbe
[FEAT/#41] 검색 결과 화면 삭제 및 ProcessScreen에서 구현
arinming 1d22fc0
[FEAT/#41] 검색 결과가 없을 때의 화면 구현
arinming 9c1620e
[FEAT/#41] SearchProcessViewModel 구현
arinming File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 5 additions & 1 deletion
6
core/src/main/java/com/terning/core/designsystem/component/topappbar/BackButtonTopAppBar.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,18 @@ | ||
package com.terning.core.designsystem.component.topappbar | ||
|
||
import androidx.compose.runtime.Composable | ||
import androidx.compose.ui.Modifier | ||
|
||
@Composable | ||
fun BackButtonTopAppBar( | ||
title: String, onBackButtonClick: (() -> Unit), | ||
title: String, | ||
modifier: Modifier, | ||
onBackButtonClick: (() -> Unit), | ||
) { | ||
TerningBasicTopAppBar( | ||
title = title, | ||
showBackButton = true, | ||
modifier = modifier, | ||
onBackButtonClick = { onBackButtonClick.invoke() }, | ||
) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
갑자기 궁금해졌는데 readOnly는 어떤 기능을 하는 속성인가요??
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.
저게 텍스트 필드 눌러도 변경할 수 없고 읽을 수만 있도록 하는 속성인데 enabled 속성으로 대체할 수 있어서 지워도 될 것 같습니당!