-
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]: 마이페이지 UI 개선 및 기능 구현 #63
Comments
Column {
/* ... */
return@Column // < 이렇게 하면 앱 크러시남
} Column {
/* ... */
return // 이렇게 해야함.
} Card(
shape = RoundedCornerShape(10.dp),
backgroundColor = WappTheme.colors.yellow34,
modifier = Modifier
.padding(horizontal = 15.dp)
.padding(top = 40.dp)
.height(50.dp)
.fillMaxWidth()
.clickable { navigateToLogin() },
) {
Text(
text = "로그인 하러 가기",
style = WappTheme.typography.contentMedium,
color = WappTheme.colors.white,
textAlign = TextAlign.Center,
modifier = Modifier.wrapContentHeight(), // <- wrapContentHeight() 하면 가운데 정렬 됨.
)
} |
tgyuuAn
added a commit
that referenced
this issue
Dec 23, 2023
tgyuuAn
added a commit
that referenced
this issue
Dec 23, 2023
tgyuuAn
added a commit
that referenced
this issue
Dec 23, 2023
tgyuuAn
added a commit
that referenced
this issue
Dec 23, 2023
tgyuuAn
added a commit
that referenced
this issue
Dec 23, 2023
tgyuuAn
added a commit
that referenced
this issue
Dec 23, 2023
tgyuuAn
added a commit
that referenced
this issue
Dec 23, 2023
기존 (바텀 시트 쪽 하단 주목) 변경 후 (바텀 시트 쪽 하단 주목) Scaffold(
modifier = Modifier.fillMaxSize(),
containerColor = WappTheme.colors.backgroundBlack, // containerColor를 추가해주면 된다.
bottomBar = {
val navBackStackEntry by
navController.currentBackStackEntryAsState()
val currentRoute = navBackStackEntry?.destination?.route
var bottomBarState by rememberSaveable { mutableStateOf(false) }
handleBottomBarState(
currentRoute,
setBottomBarState = { boolean ->
bottomBarState = boolean
},
)
WappBottomBar(
currentRoute = currentRoute,
bottomBarState = bottomBarState,
onNavigateToDestination = { destination ->
navigateToTopLevelDestination(
navController,
destination,
)
},
modifier = Modifier.height(70.dp),
)
},
) { innerPadding ->
WappNavHost(
signInUseCase = signInUseCase,
navController = navController,
modifier = Modifier.padding(innerPadding),
)
} 와 같이 containerColor = WappTheme.colors.backgroundBlack, // containerColor를 추가해주면 된다. 를 추가해주면 뒤에 흰색 배경이 해결된다 |
tgyuuAn
added a commit
that referenced
this issue
Dec 27, 2023
tgyuuAn
added a commit
that referenced
this issue
Dec 27, 2023
tgyuuAn
added a commit
that referenced
this issue
Dec 27, 2023
tgyuuAn
added a commit
that referenced
this issue
Dec 27, 2023
tgyuuAn
added a commit
that referenced
this issue
Dec 27, 2023
tgyuuAn
added a commit
that referenced
this issue
Dec 27, 2023
tgyuuAn
added a commit
that referenced
this issue
Dec 27, 2023
tgyuuAn
added a commit
that referenced
this issue
Dec 27, 2023
tgyuuAn
added a commit
that referenced
this issue
Dec 27, 2023
tgyuuAn
added a commit
that referenced
this issue
Dec 27, 2023
tgyuuAn
added a commit
that referenced
this issue
Dec 27, 2023
tgyuuAn
added a commit
that referenced
this issue
Dec 27, 2023
tgyuuAn
added a commit
that referenced
this issue
Dec 27, 2023
tgyuuAn
added a commit
that referenced
this issue
Dec 27, 2023
Merged
Merged
tgyuuAn
added a commit
that referenced
this issue
Dec 28, 2023
tgyuuAn
added a commit
that referenced
this issue
Dec 28, 2023
tgyuuAn
added a commit
that referenced
this issue
Dec 28, 2023
tgyuuAn
added a commit
that referenced
this issue
Dec 28, 2023
tgyuuAn
added a commit
that referenced
this issue
Dec 28, 2023
tgyuuAn
added a commit
that referenced
this issue
Dec 28, 2023
Merged
Merged
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
작업 사항
Todo
아래 2개에서 위 2개로 개선 하였습니다.
기타사항
The text was updated successfully, but these errors were encountered: