-
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
[FEATURE] Modified TopAppBar (1) #81
Conversation
확인했습니다! BottomBar같은 경우에는 메인에서 세 개의 주 화면(Home, Match, Team)에서만 나오면 될 것 같구요! 상세 보기 등과 같은 뎁스가 하나 더 들어가는 화면에서는 BottomBar가 없어도 될 것 같습니다! |
Scaffold( | ||
topBar = { | ||
TopBar( | ||
title = "", | ||
onBackIconClick = onBackIconClick | ||
) | ||
}, | ||
bottomBar = bottomBar | ||
) { paddingValues -> | ||
MatchDetailScreen( | ||
matchDetailUiState = matchData, | ||
onClickChat = onClickChat, | ||
modifier = Modifier | ||
.fillMaxSize() | ||
.padding(paddingValues) | ||
) | ||
} | ||
} |
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.
MatchDetailScreen의 경우 TopBar가 다른 화면들과 다르게 풀스크린 화면 내에서 다른 UI 컴포넌트 위에 겹쳐서 놓여있는 형태라 고민이 필요할 것 같습니다..!
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.
넵 확인했습니다.
해당 파트의 경우 우선 TopBar는 삭제 처리 후에 정해진 시안 따라 처리하겠습니다.
그에 따른 MatchesDetail에 Title과 League Logo를 삽입할 예정입니다. 작업은 보류처리 하겠습니다.
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.
넵, 확인했습니다!
Description
변경된 디자인 시안에 따른 TopAppBar를 수정했습니다
Content
MatchesDetailScreen, TeamSearchScreen에 디자인 시안대로 TopAppBar와 BottomBar를 삽입했습니다.To Be Updated Soon...
MatchesDetail에 Title과 League Logo를 삽입할 예정입니다.Comment