chore: Spotless fix

Signed-off-by: Pun Butrach <pun.butrach@gmail.com>
This commit is contained in:
Pun Butrach
2025-10-22 20:25:25 +07:00
parent 51a2aef412
commit 54a4e71cac
2 changed files with 4 additions and 4 deletions
@@ -57,6 +57,7 @@ val bottomSheetHandler: BottomSheetHandler
@OptIn(ExperimentalMaterial3Api::class)
@Composable
fun ProvideBottomSheetHandler(
modifier: Modifier = Modifier,
content: @Composable () -> Unit,
) {
val coroutineScope = rememberCoroutineScope()
@@ -111,7 +112,7 @@ fun ProvideBottomSheetHandler(
val animatedFraction by animateFloatAsState(
targetValue = rawFraction,
animationSpec = spring(stiffness = Spring.StiffnessMediumLow),
label = "BottomSheetBlurFraction"
label = "BottomSheetBlurFraction",
)
// See R.dimen.max_depth_blur_radius_enhanced
@@ -122,7 +123,7 @@ fun ProvideBottomSheetHandler(
Box(
modifier = Modifier
.fillMaxSize()
.blur(blur)
.blur(blur),
) {
content()
}
@@ -131,7 +132,7 @@ fun ProvideBottomSheetHandler(
Box(
modifier = Modifier
.fillMaxSize()
.background(MaterialTheme.colorScheme.onSurface.copy(alpha = scrimAlpha))
.background(MaterialTheme.colorScheme.onSurface.copy(alpha = scrimAlpha)),
)
}
}
@@ -26,7 +26,6 @@ import com.android.launcher3.util.window.WindowManagerProxy
import javax.inject.Inject
import kotlin.math.max
@Keep
@LauncherAppSingleton
class LawnchairWindowManagerProxy @Inject constructor() : WindowManagerProxy(Utilities.ATLEAST_T) {