Open
Conversation
Updated the README to include detailed instructions on forking, cloning, and submitting pull requests for the KUIT 7th Android project.
1hyok
reviewed
Apr 8, 2026
| .fillMaxWidth() | ||
| .height(160.dp) | ||
| .border( | ||
| width = 1.2.dp, |
There was a problem hiding this comment.
dp는 어차피 정수로 처리되기 때문에 예측이 가능하도록 정수를 쓰는 것이 좋습니다
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
1. 미션
2. 구현에 대한 설명
1. 연락처
Serializable 데이터 클래스
Navigation Route 정의 및 설정
Route인터페이스에CONTACT와CONTACT_DETAIL경로를 추가하였습니다.MainNavHost에 연락처 관련 composable들을 등록했습니다.화면 간 데이터 전달 (
SavedStateHandle)NavController의savedStateHandle을 활용했습니다.navController.currentBackStackEntry?.savedStateHandle?.set("call", call)navController.previousBackStackEntry?.savedStateHandle?.get<Call>("call")연락처 상세화면 (
ContactDetailScreen)popBackStack()을 이용해 이전 화면으로 돌아가는 뒤로가기 기능을 구현했습니다.2. 뉴스
Serializable 데이터 클래스
Navigation Route 정의 및 설정
Route인터페이스에HOME와HOME_DETAIL경로를 추가하였습니다.MainNavHost에 뉴스 관련 composable들을 등록했습니다.화면 간 데이터 전달 (
SavedStateHandle)NavController의savedStateHandle을 활용했습니다.navController.currentBackStackEntry?.savedStateHandle?.set("Article", article)navController.previousBackStackEntry?.savedStateHandle?.get<Article>("article")뉴스 상세화면 (
HomeDetailScreen)popBackStack()을 이용해 이전 화면으로 돌아가는 뒤로가기 기능을 구현했습니다.LazyColumn을 사용하여 뉴스 화면을 구현함으로써, 뉴스의 본문이 짤리지 않도록 하였습니다.3. 스크린샷 & 실행영상
practice.mp4
mission.mp4