We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f01d86f commit 9594e5eCopy full SHA for 9594e5e
1 file changed
feature/record/src/main/kotlin/com/ninecraft/booket/feature/record/step/ImpressionStep.kt
@@ -74,18 +74,11 @@ fun ImpressionStep(
74
75
LaunchedEffect(keyboardState, isImpressionTextFieldFocused) {
76
if (keyboardState && isImpressionTextFieldFocused) {
77
- delay(100)
+ delay(150)
78
bringIntoViewRequester.bringIntoView()
79
}
80
81
82
- LaunchedEffect(Unit) {
83
- if (state.impressionState.text.isEmpty()) {
84
- focusRequester.requestFocus()
85
- keyboardController?.show()
86
- }
87
88
-
89
Column(
90
modifier = modifier
91
.fillMaxSize()
@@ -97,7 +90,7 @@ fun ImpressionStep(
97
.fillMaxWidth()
98
.weight(1f)
99
92
.padding(horizontal = ReedTheme.spacing.spacing5)
100
- .padding(bottom = 12.dp)
93
+ .padding(bottom = 16.dp)
101
94
.verticalScroll(scrollState),
102
95
) {
103
96
Text(
0 commit comments