Skip to content

Commit

Permalink
[PC-185] 불필요한 코드 제거
Browse files Browse the repository at this point in the history
  • Loading branch information
tgyuuAn committed Dec 30, 2024
1 parent e36bec3 commit 7455517
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
5 changes: 1 addition & 4 deletions app/src/main/java/com/puzzle/piece/ui/App.kt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
package com.puzzle.piece.ui

import androidx.compose.foundation.Image
import androidx.compose.foundation.background
import androidx.compose.foundation.layout.Column
import androidx.compose.foundation.layout.height
import androidx.compose.foundation.layout.navigationBarsPadding
Expand Down Expand Up @@ -76,9 +75,7 @@ fun App(
Image(
painter = painterResource(R.drawable.ic_matching),
contentDescription = null,
modifier = Modifier
.size(80.dp)
.background(PieceTheme.colors.white),
modifier = Modifier.size(80.dp),
)
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ class NoRippleInteractionSource : MutableInteractionSource {
override suspend fun emit(interaction: Interaction) {}
override val interactions: Flow<Interaction> = emptyFlow()
override fun tryEmit(interaction: Interaction): Boolean = true
}
}

0 comments on commit 7455517

Please sign in to comment.