Skip to content

Commit

Permalink
[chore] #121 ktlintformat
Browse files Browse the repository at this point in the history
  • Loading branch information
Sangwook123 committed Sep 11, 2024
1 parent 25c2d5c commit 176c525
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ fun LoginScreen(

Spacer(modifier = Modifier.weight(0.3f))
}
if(isLoading){
if (isLoading) {
LoadingIndicator()
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ class MypageViewModel @Inject constructor(
is IndexOutOfBoundsException -> {
intent {
copy(
preferences = emptyList<Pair<String,Int>>().toImmutableList()
preferences = emptyList<Pair<String, Int>>().toImmutableList(),
)
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -77,10 +77,10 @@ fun BoxScope.TasteScreen(
brush = Brush.verticalGradient(
colors = listOf(Color(0x00000000), Color(0x339BABFB)),

),
),
),

) {
) {
Image(
painter = painterResource(id = com.record.designsystem.R.drawable.img_bg_bubble),
contentDescription = null,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ import androidx.compose.material3.SheetState
import androidx.compose.material3.Text
import androidx.compose.material3.rememberModalBottomSheetState
import androidx.compose.runtime.Composable
import androidx.compose.runtime.LaunchedEffect
import androidx.compose.runtime.getValue
import androidx.compose.ui.Alignment
import androidx.compose.ui.Modifier
Expand Down Expand Up @@ -56,7 +55,7 @@ fun SelectedVideoBottomSheet(
val lazyGridState = rememberLazyGridState()

lazyGridState.OnBottomReached {
if (!isLoading){
if (!isLoading) {
onLoadMore()
}
}
Expand Down Expand Up @@ -104,7 +103,7 @@ fun SelectedVideoBottomSheet(
},
)
}
if(isLoading){
if (isLoading) {
item(span = { GridItemSpan(4) }) {
LoadingLottie()
}
Expand Down

0 comments on commit 176c525

Please sign in to comment.