|
|
|
|
@ -15,6 +15,7 @@ import androidx.compose.foundation.layout.fillMaxWidth
|
|
|
|
|
import androidx.compose.foundation.layout.padding
|
|
|
|
|
import androidx.compose.foundation.lazy.LazyColumn
|
|
|
|
|
import androidx.compose.foundation.lazy.items
|
|
|
|
|
import androidx.compose.foundation.text.KeyboardOptions
|
|
|
|
|
import androidx.compose.material3.Icon
|
|
|
|
|
import androidx.compose.material3.MaterialTheme
|
|
|
|
|
import androidx.compose.material3.Text
|
|
|
|
|
@ -33,6 +34,7 @@ import androidx.compose.ui.graphics.vector.ImageVector
|
|
|
|
|
import androidx.compose.ui.platform.LocalContext
|
|
|
|
|
import androidx.compose.ui.res.vectorResource
|
|
|
|
|
import androidx.compose.ui.state.ToggleableState
|
|
|
|
|
import androidx.compose.ui.text.input.KeyboardCapitalization
|
|
|
|
|
import androidx.compose.ui.unit.dp
|
|
|
|
|
import androidx.lifecycle.viewModelScope
|
|
|
|
|
import dagger.hilt.android.AndroidEntryPoint
|
|
|
|
|
@ -186,7 +188,10 @@ internal fun SearchBar(
|
|
|
|
|
focusedIndicatorColor = Color.Transparent,
|
|
|
|
|
unfocusedIndicatorColor = Color.Transparent
|
|
|
|
|
),
|
|
|
|
|
modifier = Modifier.padding(start = 6.dp)
|
|
|
|
|
modifier = Modifier.padding(start = 6.dp),
|
|
|
|
|
keyboardOptions = KeyboardOptions(
|
|
|
|
|
capitalization = KeyboardCapitalization.Words,
|
|
|
|
|
)
|
|
|
|
|
)
|
|
|
|
|
}
|
|
|
|
|
} /* SearchBar */
|
|
|
|
|
|