Skip to content
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

[FIX/#51] YearPicker 컴포넌트 수정 #52

Merged
merged 3 commits into from
Jan 22, 2025
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,9 @@ fun YearPicker(
startLocalDate: LocalDate = currentDate,
yearItems: List<Int> = YEAR_RANGE.reversed(),
visibleItemsCount: Int = 3,
itemPadding: PaddingValues = PaddingValues(top = 12.dp, bottom = 16.dp),
textStyle: TextStyle = typography.title02_SB.copy(color = colors.Grey400),
selectedTextStyle: TextStyle = typography.title02_SB.copy(color = colors.Black),
itemPadding: PaddingValues = PaddingValues(top = 11.dp, bottom = 15.dp),
textStyle: TextStyle = typography.title03_SB.copy(color = colors.Grey400),
selectedTextStyle: TextStyle = typography.title03_SB.copy(color = colors.Grey800),
dividerColor: Color = Transparent,
fadingEdgeGradient: Brush = Brush.verticalGradient(
0f to Transparent,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,10 @@ sealed interface Route {
data object PostProfileImage : Route
@Serializable
data object SelectLocation : Route
@Serializable
data object GalleryUpload : Route
@Serializable
data object GalleryPostDetail : Route
}

sealed interface MainTabRoute : Route {
Expand Down