Skip to content

Commit

Permalink
feat: padding 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
rhkrwngud445 committed Jun 1, 2024
1 parent 6209ae6 commit 6ebaa00
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ fun WithPeaceBackButtonTopAppBar(
) {
TopAppBar(
title = title,
modifier = modifier,
modifier = modifier.padding(end = 24.dp),
navigationIcon = {
Icon(
modifier =
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ import androidx.compose.material3.HorizontalDivider
import androidx.compose.material3.Text
import androidx.compose.runtime.Composable
import androidx.compose.runtime.derivedStateOf
import androidx.compose.runtime.mutableStateOf
import androidx.compose.runtime.mutableIntStateOf
import androidx.compose.runtime.remember
import androidx.compose.ui.Modifier
import androidx.compose.ui.layout.onGloballyPositioned
Expand Down Expand Up @@ -59,7 +59,7 @@ fun PolicyDetailScreen(
) {
val scrollState = rememberScrollState()
val position = remember {
mutableStateOf(0)
mutableIntStateOf(0)
}
val visibility = remember {
derivedStateOf {
Expand Down Expand Up @@ -315,5 +315,3 @@ fun PolicyDetailPreview() {
}
}
}

//TODO caption 행간 확인

0 comments on commit 6ebaa00

Please sign in to comment.