Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit a1075e21 authored by Prince's avatar Prince
Browse files

Increasing speed of customize widget button

Flag: NONE Small bug fix
Fixes: 340197187
Test: Device Tested
Change-Id: I0b2e9a1dfb843c012020e4f9f2e8d6fcd391f4b3
parent 4c1803f8
Loading
Loading
Loading
Loading
+8 −3
Original line number Diff line number Diff line
@@ -640,11 +640,16 @@ private fun AnimatedVisibilityScope.ButtonToEditWidgets(
                        enter =
                            fadeIn(
                                initialAlpha = 0f,
                                animationSpec = tween(durationMillis = 500, easing = LinearEasing)
                                animationSpec = tween(durationMillis = 83, easing = LinearEasing)
                            ),
                        exit =
                            fadeOut(
                                animationSpec = tween(durationMillis = 500, easing = LinearEasing)
                                animationSpec =
                                    tween(
                                        durationMillis = 83,
                                        delayMillis = 167,
                                        easing = LinearEasing
                                    )
                            )
                    )
                    .background(colors.secondary, RoundedCornerShape(50.dp)),
@@ -658,7 +663,7 @@ private fun AnimatedVisibilityScope.ButtonToEditWidgets(
                                animationSpec =
                                    tween(
                                        durationMillis = 167,
                                        delayMillis = 500,
                                        delayMillis = 83,
                                        easing = LinearEasing
                                    )
                            ),