Skip to content

Commit 65b7f39

Browse files
committed
[BOOK-491] chore: code style check success
1 parent ef0c300 commit 65b7f39

3 files changed

Lines changed: 6 additions & 5 deletions

File tree

feature/record/src/main/kotlin/com/ninecraft/booket/feature/record/ocr/component/ImageProcessingLoader.kt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,10 +39,10 @@ internal fun ImageProcessingLoader(
3939
animationSpec = infiniteRepeatable(
4040
animation = keyframes {
4141
durationMillis = 1200
42-
0.0f at 0 using LinearOutSlowInEasing // 시작
42+
0.0f at 0 using LinearOutSlowInEasing // 시작
4343
1.0f at 300 using FastOutLinearInEasing // 최고점
4444
0.0f at 600 using LinearOutSlowInEasing // 바닥 도착
45-
0.0f at 1200 // 대기
45+
0.0f at 1200 // 대기
4646
},
4747
repeatMode = RepeatMode.Restart,
4848
initialStartOffset = StartOffset(index * 200), // 순차적 시작 지연
@@ -53,7 +53,7 @@ internal fun ImageProcessingLoader(
5353
Row(
5454
modifier = modifier,
5555
verticalAlignment = Alignment.CenterVertically,
56-
horizontalArrangement = Arrangement.Center
56+
horizontalArrangement = Arrangement.Center,
5757
) {
5858
dotAnimations.forEachIndexed { index, animValue ->
5959
Box(

feature/record/src/main/kotlin/com/ninecraft/booket/feature/record/ocr/content/OcrCameraContent.kt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -249,7 +249,8 @@ internal fun OcrCameraContent(
249249
val output = ImageCapture.OutputFileOptions.Builder(photoFile).build()
250250

251251
cameraController.takePicture(
252-
output, executor,
252+
output,
253+
executor,
253254
object : ImageCapture.OnImageSavedCallback {
254255
override fun onImageSaved(outputFileResults: ImageCapture.OutputFileResults) {
255256
state.eventSink(OcrUiEvent.OnImageCaptured(photoFile.toUri()))

feature/record/src/main/kotlin/com/ninecraft/booket/feature/record/ocr/content/OcrImageContent.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ internal fun OcrImageContent(
7474
Box(
7575
modifier = Modifier
7676
.matchParentSize()
77-
.background(Black.copy(alpha = 0.5f))
77+
.background(Black.copy(alpha = 0.5f)),
7878
)
7979
Column(
8080
horizontalAlignment = Alignment.CenterHorizontally,

0 commit comments

Comments
 (0)