File tree Expand file tree Collapse file tree
app/src/main/java/to/bitkit/ui/screens/widgets/calculator Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11package to.bitkit.ui.screens.widgets.calculator
22
33import androidx.compose.animation.AnimatedVisibility
4- import androidx.compose.animation.fadeIn
5- import androidx.compose.animation.fadeOut
4+ import androidx.compose.animation.expandVertically
5+ import androidx.compose.animation.shrinkVertically
66import androidx.compose.foundation.layout.Arrangement
77import androidx.compose.foundation.layout.Column
88import androidx.compose.foundation.layout.Row
@@ -100,8 +100,8 @@ fun CalculatorPreviewContent(
100100 ) {
101101 AnimatedVisibility (
102102 visible = ! isKeyboardVisible,
103- enter = fadeIn (),
104- exit = fadeOut (),
103+ enter = expandVertically (),
104+ exit = shrinkVertically (),
105105 ) {
106106 Column {
107107 Spacer (modifier = Modifier .height(26 .dp))
You can’t perform that action at this time.
0 commit comments