Skip to content

Commit

Permalink
[chore] #11 주석 제거
Browse files Browse the repository at this point in the history
  • Loading branch information
t1nm1ksun committed May 15, 2024
1 parent 3ace800 commit 689e687
Showing 1 changed file with 15 additions and 19 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -78,10 +78,10 @@ fun View1Screen() {
onValueChange = { editText = it },
singleLine = true,
modifier =
Modifier
.weight(1f)
.size(width = 293.dp, height = 33.dp)
.background(color = Gray06, shape = RoundedCornerShape(9.dp)),
Modifier
.weight(1f)
.size(width = 293.dp, height = 33.dp)
.background(color = Gray06, shape = RoundedCornerShape(9.dp)),
decorationBox = { innerTextField ->
Box(
contentAlignment = Alignment.CenterStart,
Expand Down Expand Up @@ -129,26 +129,25 @@ fun CustomTabPager(
TabRowDefaults.PrimaryIndicator(
modifier =
Modifier
.tabIndicatorOffset(tabPositions[pagerState.currentPage])
,
.tabIndicatorOffset(tabPositions[pagerState.currentPage]),
color = Black02,
width = pages[pagerState.currentPage].length * 12.dp

width = pages[pagerState.currentPage].length * 12.dp,
)
},
containerColor = Color.White,
contentColor = Black02,
edgePadding = 0.dp,
modifier = Modifier.padding(0.dp),
divider = {HorizontalDivider(
modifier =
Modifier
.fillMaxWidth(),
color = Color.LightGray,
thickness = 1.dp,
)}
divider = {
HorizontalDivider(
modifier =
Modifier
.fillMaxWidth(),
color = Color.LightGray,
thickness = 1.dp,
)
},
) {
// Text(text = "서재패Md", style = body3SemiBold, color = PinkColor)
tabs.forEachIndexed { index, title ->
Tab(
text = { Text(title, style = body3SemiBold) },
Expand All @@ -163,7 +162,6 @@ fun CustomTabPager(
}
}


HorizontalPager(
state = pagerState,
) { page ->
Expand All @@ -184,8 +182,6 @@ fun CustomTabPager(
}
}



@Composable
fun View1Content(modifier: Modifier) {
Column(
Expand Down

0 comments on commit 689e687

Please sign in to comment.