File tree Expand file tree Collapse file tree 1 file changed +3
-6
lines changed
feature/search/src/main/kotlin/com/ninecraft/booket/feature/search Expand file tree Collapse file tree 1 file changed +3
-6
lines changed Original file line number Diff line number Diff line change @@ -80,6 +80,7 @@ internal fun SearchContent(
8080 .fillMaxSize()
8181 .background(White ),
8282 ) {
83+ Spacer (modifier = Modifier .height(ReedTheme .spacing.spacing3))
8384 ReedTextField (
8485 queryState = state.queryState,
8586 queryHintRes = designR.string.search_book_hint,
@@ -89,13 +90,9 @@ internal fun SearchContent(
8990 onClear = {
9091 state.eventSink(SearchUiEvent .OnClearClick )
9192 },
92- modifier = modifier
93- .padding(
94- vertical = ReedTheme .spacing.spacing3,
95- horizontal = ReedTheme .spacing.spacing5,
96- ),
93+ modifier = modifier.padding(horizontal = ReedTheme .spacing.spacing5),
9794 )
98-
95+ Spacer (modifier = Modifier .height( ReedTheme .spacing.spacing3))
9996 Spacer (modifier = Modifier .height(ReedTheme .spacing.spacing6))
10097
10198 when (state.uiState) {
You can’t perform that action at this time.
0 commit comments