Skip to content

Commit

Permalink
[FEAT/#65] 탐색 정렬 바텀시트 구현
Browse files Browse the repository at this point in the history
  • Loading branch information
Hyobeen-Park committed Jan 19, 2025
1 parent 29f7a7c commit bdcbcc2
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,10 @@ package com.spoony.spoony.presentation.explore
import androidx.compose.foundation.layout.Arrangement
import androidx.compose.foundation.layout.Column
import androidx.compose.foundation.layout.fillMaxSize
import androidx.compose.material3.Text
import androidx.compose.runtime.Composable
import androidx.compose.ui.Alignment
import androidx.compose.ui.Modifier
import androidx.compose.ui.unit.sp
import com.spoony.spoony.presentation.explore.component.bottomsheet.ExploreSortingBottomSheet

@Composable
fun ExploreScreen() {
Expand All @@ -16,9 +15,9 @@ fun ExploreScreen() {
horizontalAlignment = Alignment.CenterHorizontally,
verticalArrangement = Arrangement.Center
) {
Text(
text = "Explore Screen",
fontSize = 50.sp
ExploreSortingBottomSheet(
onDismiss = {},
onClick = {}
)
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ fun ExploreEmptyScreen(
.padding(horizontal = 50.dp)
.aspectRatio(1f),
composition = lottieComposition,
iterations = LottieConstants.IterateForever,
iterations = LottieConstants.IterateForever
)

Text(
Expand Down

0 comments on commit bdcbcc2

Please sign in to comment.